2015年3月5日

Linux之shell脚本遍历文件夹下所有文件

摘要: #!/bin/bash function ergodic(){ for file in ` ls $1` do if [ -d $1"/"$file] #如果 file存在且是一个目录则为真 then ergodic $1"/"$file else local path=$1"/"... 阅读全文

posted @ 2015-03-05 16:05 箫轩 阅读(10026) 评论(0) 推荐(0) 编辑

导航