目錄描述
語法使用示例
顯示目錄結構
顯示隱藏檔案或目錄
僅保留目錄名稱
注意事項
指定的目錄名不存在
指定非目錄型別
tree命令用樹狀圖的形式列出乙個目錄的檔案結構。
tree [-ad]
引數名稱描述
-a顯示的結構中的隱藏檔案和目錄
-d顯示的結構中僅保留目錄名稱
使用 tree 《目錄名》 可以得到乙個目錄下的檔案結構。
$ tree flaskdemo
flaskdemo
├── render_demo.py
└── templates
├── for.html
└── hello_world.html
1 directory, 3 files
使用可選的-a option,可以列出指定目錄中的隱藏檔案或目錄。
$ tree -a .
.├── .tag.txt
└── kubernetes_in_action.pdf
使用-d引數時,tree命令的顯示結果僅保留目錄名稱。
$ tree flaskdemo/ -d
flaskdemo/
└── templates
1 directory
當指定要顯示結構的目錄名不存在時,tree命令顯示"error opening dir"
$ tree fun
fun [error opening dir]
0 directories, 0 files
tree命令僅能顯示目錄的檔案結構。當指定的名稱不是目錄型別時,tree顯示"error opening dir"
$ tree auto.sh
auto.sh [error opening dir]
0 directories, 0 files
禁止 Apache 顯示目錄列表
如何禁止 apache 顯示目錄列表呢?要禁止 apache 顯示目錄結構列表,只需將option中的indexes去掉即可。比如我們看看乙個目錄的目錄配置 options indexes followsymlinks allowoverride none order allow,deny allo...
Vim 顯示目錄 NERDTree外掛程式
首先安裝nerdtree依賴的外掛程式 install to vim autoload pathogen.vim.or copy and paste mkdir p vim autoload vim bundle curl lsso vim autoload pathogen.vim 更新vimrc...
Apache禁止顯示目錄結構
開啟檔案 httpd vhosts.conf 如果你的檔案根目錄裡有 index.html,瀏覽器就會顯示 index.html的內容,如果沒有 index.html,瀏覽器就會顯示檔案根目錄的目錄列表,目錄列表包括檔案根目錄下的檔案和子目錄。如果該虛擬目錄下沒有 index.html,瀏覽器也會顯...