shell遍历目录及目录下的所有文件
Oct042007
作者:u2 发布:2007-10-04 20:26 分类:others shell遍历目录及目录下的所有文件已关闭评论
#!/bin/sh
# 定义一个方法
foreachd(){
# 遍历参数1
for file in $1/*
do
# 如果是目录就打印处理,然后继续遍历,递归调用
if [ -d $file ]
then
#echo $file
foreachd $file
elif [ -f $file ]
then
echo $file
foreachd $file
fi
done
}
# 执行,如果有参数就遍历指定的目录,否则遍历当前目录
if ($0 > 0)
then
foreachd “$1”
else
foreachd “.”
fi
最活跃的读者