欢迎光临
我们一直在努力

shell递归程序设计-目录列表_shell教程

建站超值云服务器,限时71元/月

UNIXShell脚本类似DOS的批处理命令,但比较起来UNIXShell的功能更强大,在某些方面,Shell甚至超过了一些高级语言。
下边的Shell脚本演示了如何用Shell脚本编写递归程序。

运行前先执行下述准备命令:
lntree.sh/usr/bin/tree
lntree.sh/usr/bin/wtree
lntree.sh/usr/bin/dtree
rmtree.sh

#tree.sh

#DepthfirstDirectorylist
dtree(){
PWD=`pwd|seds/\/\$//`
fordin$*
do
echo”${PWD}/$d”
[-d”$d”-a-x”$d”]&&{
cd”$d”
dtree*
cd..
PWD=`pwd|seds/\/\$//`#restorePWD
}
done
}

#DepthfirstDirectorylist
wtree(){
PWD=`pwd|seds/\/\$//`
fordin$*
do
echo${PWD}/$d
done
fordin$*
do
[-d”$d”-a-x”$d”]&&{
cd$d
wtree*
cd..
}
done
}

#Directorylist
tree(){
PWD=`pwd|seds/\/\$//`
fordin$*
do
echo${PWD}/$d
done
}

#main
TREE=`basename$0`
if[“$1”]
thenDIR=”$1″
elseDIR=”.”
fi
ifcd$DIR
then$TREE*
elseecho”$0:Directory$1readfail.”
fi

#(End)

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » shell递归程序设计-目录列表_shell教程
分享到: 更多 (0)