linux學習記錄 常用工具

2021-10-02 19:06:31 字數 1521 閱讀 1671

find /etc -name '*.conf'

忽略大小寫

find /etc -iname '*.conf'

所屬使用者

find . -user

所屬組find . -group

檔案型別

find . -type f

資料夾型別

find . -type d

按檔案大小查詢

find /etc -size -100k

檢視檔案大小

ll -h filename

3天內修改過的檔案

find /etc -mtime -3

find /etc -mtime -3 -name '*.conf'

3天之前修改過的檔案

find /etc -mtime +3 -user root

30分鐘內修改過的檔案

find /etc -mmin -30

查詢層級至少2層的檔案

find . -mindepth 2 -type f

查詢層級至少3層的資料夾

find . -mindepth 3 -type d

查詢層級最多1層的檔案

find . -maxdepth 1 -type f

無屬主(如使用者或組被刪除了)

find . -nouser

find . -nogroup

根據許可權查詢

find . -perm 644

find . -perm 777

find . -path ./test -prune -o -type f

find . -path ./test -prune -o ./test1 -prune -o -type f

find . -newer filename

#預設也是列印

find . -type -f -print

find ./etc -name '*.conf' -exec rm -rf {} \;

find ./etc -size +1n -exec cp {} ./test_5/ \;

find /var/log -name "*.log" -mtime +7 -exec rm -rf {} \;

-a -o

-not|!

find . -type -f -ok rm -rf {} \;

/var/lib/mlocate/mlocate.db

updatedb更新mlocate.db檔案

部分匹配

locate my.cnf #my.cnf my.cnf.d

查詢指令碼所在位置

whereis mysql

查詢二進位制指令碼所在位置

whereis -b mysql

查詢幫助文件所在位置

whereis -m mysql

whereis -s mysql

which mysql

常用工具記錄

一 xshell背景配色 修改為護眼的深藍色 其中,參考顏色轉換 708284 rgb 112,130,132 07242e rgb 7,36,46 二 關於rm的使用 如何刪除除去特定檔案後的所有檔案 首先開啟擴充套件萬用字元 shopt s extglob rm rf 特定檔案 當然也可以先把欲...

linux 常用工具

我們經常需要長時間地坐在電腦前做一項具體的工作只為能夠優化工作流程。這包括選擇和配置能讓你最高效工作的工具。從長遠來看,簡單易學的工具並不總是好的,那些能夠充分個性化並無縫地融入獨 作流程的工具才是真正的好工具。在這篇文章中,我想向大家介紹5款免費又開源的工具,而且它們在我的軟體開發生涯中發揮了很重...

linux常用工具

linux常用工具 1.vim編輯器 vim的三種模式 1.命令 vim開啟檔案就是命令模式 1.1.可以移動游標 1.2.x 刪除字元 nx 刪除n個字元 dd 刪除一行 ndd 刪除n行 p 貼上 np 貼上n行 yy 複製一行 nyy 複製n行 gg 回到第一行 shift g 跳到 最後一行...