find命令
which 查命令的絕對路徑
wheris locate node
ctrl+a 首 e 尾class
find [路徑] [參數]
find /etc/ -name "aaa"
find /etc/ -name type -d "aaa" 查找目錄
-f 普通文件
-l 軟連接
b 塊文件權限
stat 查看文件的具體信息
-mtime +n/-n 修改文件內容, 時間大於或者小於n天的文件,沒有等於之說
-ctime 寫入,更改Inode屬性(更改全部者,權限或者連接)
-atime 文件訪問時間im
find /etc/ -type f -mtime -1 -name "*.conf" 而且
find /etc/ -type f -o -mtime -1 -o -name "*.conf" -o或者
查找Inode號的文件
find / -inum 3234
find /root/ -type -mtime -1 按天
find /root/ -type -mmin -60 最近60分鐘前
find /root/ -type f -mmin -60 -exec ls -l {} \; {}表明列表
find /root/ -type f -mmin -60 -exec {} {}.bak \; 查找並更名字di
文件大小
find /root/ type f -size +10k -exec ls -l {} \: 大於10k M 文件
文件名後綴
便於區分是什麼文件,文件後綴名沒有具體的意義,加或者不加無所謂時間