摘要: #!/bin/bash function recurse_convert() { local path=$1 if [ "$path" == "" ];then path="." fi for file in `ls $path` do if [ -d $path"/"$file ] then ... 阅读全文
posted @ 2019-11-20 11:16 石斋 阅读(127) 评论(0) 推荐(0) 编辑