当前位置: > CentOS > CentOS入门 >

CentOS系统下列出文件树和目录树

时间:2014-06-26 02:37来源:linux.it.net.cn 作者:IT网
[root@10.10.90.97 ncftp]# pwd
/usr/local/ncftp
文件树:
[root@10.10.90.97 ncftp]# find . -print 2>/dev/null|awk '!/\.$/ {for (i=1;i<NF;i++){d=length($i);if ( d < 5 && i != 1 )d=5;printf("%"d"s","|")}print "---"$NF}' FS='/'                
|---bin
|    |---ncftpls
|    |---ncftpput
|    |---ncftpbookmarks
|    |---ncftpbatch
|    |---ncftpget
|    |---ncftpspooler
|    |---ncftp
|---etc
目录树:
[root@10.10.90.97 ncftp]# find . -type d -print 2>/dev/null|awk '!/\.$/ {for (i=1;i<NF;i++){d=length($i);if ( d < 5 && i != 1 )d=5;printf("%"d"s","|")}print "---"$NF}' FS='/'       
|---bin
|---etc

(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容