在 Bash 中列出目錄
Aashish Sunuwar
2022年5月11日
讓我們看看列出 Bash 中的檔案和資料夾。
使用 ls
命令列出 Bash 中的目錄
我們使用 ls
命令列出 Bash 中當前目錄中的專案。
ls
輸出:
some_dir/
├── myFile1.txt
├── myFile2.txt
├── myFile3.txt
├── child_dir01/
├── child_dir02/
└── child_dir03/
但是,我們只能使用 */
列印目錄,因為所有目錄都以 /
結尾,並使用 -d
選項確保只顯示目錄名稱而不顯示其內容。
ls -d */
輸出:
some_dir/
├── child_dir01/
├── child_dir02/
└── child_dir03/