next up previous
Next: 要怎麼設定 prompt 才會顯示出目前所在的目錄? Up: 初學者可能會問的基本問題 Previous: 我要怎樣才能把檔名當中含有特殊字元的檔案刪除?

我要如何列出整個目錄樹呢?

底下有幾種做法自己挑一個吧:

        ls -R             (not all versions of "ls" have -R)
        find . -print     (should work everywhere)
        du -a .           (shows you both the name and size)

若你要找的是特定的檔案,例如說是檔名結尾為 ".c" 者,可用

        find . -name '*.c' -print
"find" 是一隻很強很好用的程式。值得一學。



Tan Koan-Sin
1999-03-02