Back

显示某个目录的结构 ( show folder structures )

发布时间: 2014-03-12 02:39:00

显示某个目录的结构

$ find ./ -type d  

$ tree -d /opt/files

see: http://stackoverflow.com/questions/3455625/linux-command-to-print-directory-structure-in-the-form-of-a-tree

Back