下面的短小的shell程序可以列出目录树 充分利用了sed强大的模式匹配能力 目录树形式如下: `shellp `updates `wuftpd | `doc | | `examples | `src | | `config | | `makefiles | `support | | `makefiles | | `man | `util 脚本如下 #!/bin/sh # dtree: Usage: dtree [any directory] dir=${:} (cd $dir; pwd) find $dir type d print | sort f | sed e s^$ e /^$/d e s[^/]*/([^/]*)$` e s[^/]*/| g |