Featured image of post Linux Command 筆記

Linux Command 筆記

紀錄用過的一些指令

這邊紀錄是在 linux 上可以使用的指令,mac 上應該也能用
目前我用過的 linux 系統沒有很多,大概只有 ubuntu, Raspberry Pi OS, truenas, proxmox ve 等
如果 Windows 要使用可以裝 WSL (windows subsystem linux)

顯示目前資料夾

bash
1
pwd

find

找檔名(資料夾) 基本用法

若要在目前的目錄底下,找尋找所有 .txt 的檔案,可以用下面指令
find 可以指定搜尋的是檔案或資料夾
-type f 檔案 , -type d 資料夾

bash
1
find . -name *.txt

若其中有檔案或資料夾要排除
範例排除所有 txt 檔與在 folder 底下的檔案

bash
1
find . -type f ! -name "*.txt" ! -path "./folder/*"

搜尋並執行指令

中間 command 可以自行換成其他指令

bash
1
find . -type f -name "*.txt" -exec command {} \+

搜尋並刪除

bash
1
find . -type d -name "foo" -exec rm -rf {} \+

如果只是刪除空資料夾可以不用用到 -exec

bash
1
find . -type d -empty -delete

列出大於 25MB檔案

bash
1
find . -size +25M -exec ls -lh {} \+

找檔案修改時間

列出現在資料夾1天內有改動的檔案

bash
1
find ./ -mtime -1

列出現在資料夾2小時內有改動的檔案

bash
1
find ./ -mmin -120

列出現在資料夾1天之前有改動的檔案

bash
1
find ./ -mtime +1

列出檔案詳細資料

bash
1
find ./ -mtime +1 -ls

找檔案內容

find 專找檔案名稱、檔案資訊, grep 才能列內容出來找

bash
1
grep -rnw '/path/to/somewhere/' -e 'pattern'
  • -r or -R is recursive,
  • -n is line number
  • -w stands for match the whole word.
  • -l (lower-case L) can be added to just give the file name of matching files.

壓縮、解壓縮

紀錄目前有遇到、常用的格式

tar

大部分 linux 內建,不用特別安裝

壓縮
1
tar cvf FileName.tar DirName
解壓縮
1
tar xvf FileName.tar

tar.gz

大部分 linux 內建,不用特別安裝

壓縮
1
tar zcvf FileName.tar DirName
解壓縮
1
tar zxvf FileName.tar

zip

需要安裝 zip,附上 ubutu 安裝指令

安裝
1
apt install zip unzip
壓縮
1
zip -r FileName.zip DirName
解壓縮
1
unzip FileName.zip

7z rar

7z 可以一起處理 rar 的格式,附上 ubuntu 安裝指令

安裝
1
apt-get install p7zip-full p7zip-rar
壓縮
1
7z a FileName.7z FileName

壓縮可以另外加 -pYOURPASSWORD 來加密碼
FileName.7z 可以自行換成 FileName.rar

解壓縮
1
7z x FileName.7z

watch 固定間格重複執行固定指令

大部分 linux 內建,不用特別安裝

watch 會固定時間重複下同樣的指令,方便看 log 或系統執行中的變化
-n 可以調整間隔時間(秒),不同的系統預設值不同
-d 標示出不同處

bash
1
watch -n 1 command

例如每秒看 nvidia 顯示卡的運行狀況

bash
1
watch -n 1 nvidia-smi

參考來源

使用 Hugo 建立
主題 StackJimmy 設計