find /
-name test //尋找檔名是test的檔案
find /
-name *test*
//檔名包含test的檔案
find /
-name ?test //檔名以單個字元開頭+test的檔案
find /
-iname test //不區分大小寫
linux資料塊最小單位是0.5k, 即204800=100mb
find / -size +n //檔案大小 大於n的檔案
find / -size -n //小於n的檔案
find / -size n //等於n的檔案
find / -user ~
find / -amin -5 //5分鐘之內訪問過的檔案
find / -cmin +5 //5分鐘之外屬性被修改的檔案
find / -mmin +5 //5分鐘之外內容被修改的檔案
# which 命令 找到命令所在目錄
which
lswhich
rm#whereis 命令
#whereis 不僅可以找到命令所在目錄,還能找到命令對應的help目錄
whereis
cp
-a 兩個條件同時滿足
-o 兩個條件滿足乙個就可以
//查詢當前目錄下,檔名是test且檔案大小大於100mb的檔案或目錄
find
. -name *test* -a -size +204800
//找到檔案後 對它執行ls -lh命令
// .代表當前目錄
find
. -name test -exec ls -lh \;
//同上 只是加了詢問確認
find
. -name test -ok ls -lh \;
// 根據型別查詢
find
. -type f/d/l
// 根據節點查詢
find
. -inum 66
Linux常用命令 3 檔案和目錄管理
1 linux 檔案許可權和目錄配置 linux 檔案分三種身份 owner group others。三種許可權 read write execute ls al drwxr xr x 1 root root 4230 2012 09 12 17 21 jdk 7u7 對應檔案許可權 連線數 使用...
linux常用命令 3檔案與目錄相關命令
cd 返回上一級目錄 cd 返回上兩級目錄 cd 返回上次所在目錄 cp file1 file2 將file1複製為file2 cp a dir1 dir2 複製乙個目錄 cp a tmp dir1 複製乙個目錄到當前工作目錄 代表當前目錄 ls 檢視目錄中的檔案 ls a 顯示隱藏檔案 ls l ...
linux常用命令一 檔案目錄
ls modification time mtime,修改時間 當該檔案的 內容資料 更改時,就會更新這個時間。內容資料指的是檔案的內容,而不是檔案的屬性。status time ctime,狀態時間 當該檔案的 狀態 status 改變時,就會更新這個時間,舉例來說,更改了許可權與屬性,就會更新這...