首页 » Linux » liunx基础 » 阅读文章
shell脚本遍历目录输出文件绝对路径
刚好有项目需要这个功能,网上找的,写的还不错。可以学习下递归遍历的写法。记录下,备查。
#!/bin/sh
function scandir() {
local cur_dir parent_dir workdir
workdir=$1
cd ${workdir}
if [ ${workdir} = "/" ]
then
cur_dir=""
else
cur_dir=$(pwd)
fi
for dirlist in $(ls ${cur_dir})
do
if test -d ${dirlist};then
cd ${dirlist}
scandir ${cur_dir}/${dirlist}
cd ..
else
echo ${cur_dir}/${dirlist}
fi
done
}
if test -d $1
then
scandir $1
elif test -f $1
then
echo "you input a file but not a directory,pls reinput and try again"
exit 1
else
echo "the Directory isn't exist which you input,pls input a new one!!"
exit 1
fi
声明: 本文由Ezencart原创,转载请保留链接:shell脚本遍历目录输出文件绝对路径





评论 共0条 (RSS 2.0) 发表评论