最新消息: 新版网站上线了!!!

linux用命令输出目录结构的方法

命令
  1. ls -R | grep ":" | sed -e 's/://' -e 's/[^-][^\/]*\//--/g' -e 's/^/   /' -e 's/-/|/' 

显示效果(或用tree 目录 |more的效果是一样的)

  1. $ tree /Applications | more 
  2. /Applications 
  3.    |-Address Book.app 
  4.    |---Contents 
  5.    |-----MacOS 
  6.    |-----Resources 
  7.    |-------ABLargeTypeWindow.nib 
  8.    etc... 

 

转载请注明:谷谷点程序 » linux用命令输出目录结构的方法