Linux tree 指令

tree 是一個用來顯示檔案和資料夾層次結構的指令,可以用來快速瀏覽目錄和方便分享專案結構。

在 Linux 中, tree 並不是內建的指令,需要先安裝:
    
sudo apt-get install tree
    

顯示當前路徑下的檔案結構:
    
tree
    

執行範例:
    
tree
.
├── my-folder
│   ├── my.txt
│   ├── hello_python.py
│   └── run.sh
└── output.txt
    

顯示指定路徑的檔案結構
顯示 /path 路徑下的檔案結構:
    
tree /path
    

指定資料夾深度
只顯示到兩層的檔案或資料夾
    
tree -L 2
    

顯示所有檔案(包含以 . 開頭的隱藏檔案)
    
tree -a
    

只顯示資料夾,不顯示檔案
    
tree -d
    

排除檔案或資料夾
排除 logs 資料夾
    
tree -I logs
    

留言

張貼留言

如果有任何問題、建議、想說的話或文章題目推薦,都歡迎留言或來信: a@ruyut.com