Linux -find
ctrl +d 退出 類似 quit
ctrl +c 終止
ctrl +u 刪除光標之前的
ctrl +e 移動光標到最後
find /etc -name "sshd_config" #搜索etc目錄下名字叫 "sshd_config"的文件
find /etc -name "sshd*" #搜索etc目錄下名字大概叫 "sshd"的所有文件
find /etc/ -type d -name "sshd" #搜索etc下目錄叫sshd的目錄 d 目錄參數
find /etc/ -type l -name "sshd" #搜索etc下軟鏈接叫sshd的軟鏈接文件 l 為軟鏈接
stat 查看文件具體信息
stat 1.txt
最近訪問 atime
創建時間(最近更改時間) mitme
更改文件內容ctime變化,
LANG=en 顯示為英文
find / -type -mtime -1 搜索更改文件內容為1天以內的
find / -type -mtime +1 搜索更改文件內容大於1天的
find /etc/ -type f -mtime -1 -name “*.conf” 搜索文件類型並且更能內容為1天以內的名字叫.conf所有文件
搜索文件的硬鏈接:
find / -inum
find /root/ type f -mmin -120 -exec ls -l{} \; 搜索root下,修改時間最少為120分鐘的文件,搜索完,並ls -l 出來。
find /root/ -size +10k 搜索目錄下文件大於10k的
find /root/ -size -10k 搜索目錄下文件小於10k的
find /root -type f -size -10k -exec ls -lh {} \; 搜索root下,大小大於10k的文件,並展示出來(k的單位也可以換M)
Linux -find