Shell: bash, tcsh, sh 的比較 (不同)

bash:
Linux 的使用者普遍使用的 shell, 網路上找到的 Linux script 或相關教程. 都是以 bash 為範本.

tcsh:
若你是個 C 語言的開發者, tcsh 的語法較為接近 C.

sh:
在各種 Unix-like 平台之間, 相容性最高的 shell, 若要寫一個通用的 script, 以 sh 最為理想.
(建議一定要瞭解 sh 的基本用法)

[參考網頁]

個人建議學 bash + sh. 參考網頁: https://web.fe.up.pt/~jmcruz/etc/unix/sh-vs-csh.html

Linux 指令: find 尋找目錄或檔案

用檔名尋找

(預設區分檔案名稱英文大小寫)
find -name “檔案名稱”

(不區分檔案名稱英文大小寫)
find -iname “檔案名稱”

反向尋找(即不符合此名稱的檔案)
find -not -name “檔案名稱”

find -type 檔案類型
檔案類型有:
f: 一般檔案
d: 目錄
l: 連結
c: 字元裝置
b: 區塊裝置

指令格式:
find [-H | -L | -P] [-EXdsx] [-f path] path … [expression]
find [-H | -L | -P] [-EXdsx] -f path [path …] [expression]