摘要: 例1 1 #! /bin/bash 2 read_dir(){ 3 a=0 4 declare -a arr 5 for file in `ls $1` 6 do 7 a=$a+1 8 if [ -d $1"/"$file ] 9 then 10 arr[$a]=$1"/"$file 11 echo 阅读全文
posted @ 2023-08-27 19:59 看一百次夜空里的深蓝 阅读(530) 评论(0) 推荐(0) 编辑