這邊紀錄是在 linux 上可以使用的指令,mac 上應該也能用
目前我用過的 linux 系統沒有很多,大概只有 ubuntu, Raspberry Pi OS, truenas, proxmox ve 等
如果 Windows 要使用可以裝 WSL (windows subsystem linux)
顯示目前資料夾
bash
|
|
find
找檔名(資料夾) 基本用法
若要在目前的目錄底下,找尋找所有 .txt 的檔案,可以用下面指令
find 可以指定搜尋的是檔案或資料夾
-type f
檔案 , -type d
資料夾
bash
|
|
若其中有檔案或資料夾要排除
範例排除所有 txt 檔與在 folder 底下的檔案
bash
|
|
搜尋並執行指令
中間 command 可以自行換成其他指令
bash
|
|
搜尋並刪除
bash
|
|
如果只是刪除空資料夾可以不用用到 -exec
bash
|
|
列出大於 25MB檔案
bash
|
|
找檔案修改時間
列出現在資料夾1天內有改動的檔案
bash
|
|
列出現在資料夾2小時內有改動的檔案
bash
|
|
列出現在資料夾1天之前有改動的檔案
bash
|
|
列出檔案詳細資料
bash
|
|
找檔案內容
find 專找檔案名稱、檔案資訊, grep 才能列內容出來找
bash
|
|
-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 內建,不用特別安裝
壓縮
|
|
解壓縮
|
|
tar.gz
大部分 linux 內建,不用特別安裝
壓縮
|
|
解壓縮
|
|
zip
需要安裝 zip,附上 ubutu 安裝指令
安裝
|
|
壓縮
|
|
解壓縮
|
|
7z rar
7z 可以一起處理 rar 的格式,附上 ubuntu 安裝指令
安裝
|
|
壓縮
|
|
壓縮可以另外加 -pYOURPASSWORD
來加密碼
FileName.7z 可以自行換成 FileName.rar
解壓縮
|
|
watch 固定間格重複執行固定指令
大部分 linux 內建,不用特別安裝
watch 會固定時間重複下同樣的指令,方便看 log 或系統執行中的變化
-n
可以調整間隔時間(秒),不同的系統預設值不同
-d
標示出不同處
bash
|
|
例如每秒看 nvidia 顯示卡的運行狀況
bash
|
|
參考來源
- https://blog.gtwang.org/linux/unix-linux-find-command-examples/
- https://www.cyberciti.biz/faq/how-to-find-and-delete-directory-recursively-on-linux-or-unix-like-system/
- https://stackoverflow.com/questions/16956810/how-do-i-find-all-files-containing-specific-text-on-linux
- https://note.drx.tw/2008/04/command.html
- https://snoopymemory.blogspot.com/2016/04/ubuntu-7zrar.html
Photo by Gabriel Heinzer on Unsplash