科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道应用软件如何用 Shell 脚本编写递归程序

如何用 Shell 脚本编写递归程序

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

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

作者:ChinaITLab 来源:ChinaITLab 2007年9月15日

关键字: shell 脚本 递归程序 软件

  • 评论
  • 分享微博
  • 分享邮件

UNIX Shell 脚本类似 DOS 的批处理命令,但比较起来 UNIX Shell 的功能更强大,在某些方面,Shell 甚至超过了一些高级语言。

下边的 Shell 脚本演示了如何用 Shell 脚本编写递归程序。

运行前先执行下述准备命令:

ln tree.sh /usr/bin/tree

ln tree.sh /usr/bin/wtree

ln tree.sh /usr/bin/dtree

rm tree.sh

# tree.sh

# Depth first Directory list

dtree() {

PWD=`pwd|sed 's/\/\$//`

for d in $*

do

echo "${PWD}/$d"

[ -d "$d" -a -x "$d" ] && {

cd "$d"

dtree *

cd ..

PWD=`pwd|sed 's/\/\$//` # restore PWD

}

done

}

# Depth first Directory list

wtree() {

PWD=`pwd|sed 's/\/\$//`

for d in $*

do

echo ${PWD}/$d

done

for d in $*

do

[ -d "$d" -a -x "$d" ] && {

cd $d

wtree *

cd ..

}

done

}

# Directory list

tree() {

PWD=`pwd|sed 's/\/\$//`

for d in $*

do

echo ${PWD}/$d

done

}

# main

TREE=`basename $0`

if [ "$1" ]

then DIR="$1"

else DIR="."

fi

if cd $DIR

then $TREE *

else echo "$0: Directory $1 read fail."

fi

# (End)

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章