Linux学习小标兵,专注Linux资讯分享,技术文章分享
分类: LINUX
2023-09-09 23:11:05
在当前目录下,查找所有名称为probe.txt的文件
# find . -name linuxprobe.txt ./linuxprobe.txt
查找home目录下所有文件名为linuxprobe.txt的文件
# find /home -name linuxprobe.txt /home/linuxprobe.txt
在特定目录下查找名称为linuxprobe.txt的文件,忽略文件名大小写
# find /home -iname linuxprobe.txt ./linuxprobe.txt ./Linuxprobe.txt
根目录下查找目录名为linuxprobe的目录
# find / -type d -name linuxprobe /linuxprobe
查找当前目录下的名为linuxprobe.php的文件
# find . -type f -name linuxprobe.php ./linuxprobe.php
# find . -type f -name "*.php" ./linuxprobe.php ./login.php ./index.php
查找当前目录下所有权限为777的文件
# find . -type f -perm 0777 -print
查找根目录下所有权限不是777的文件
# find / -type f ! -perm 777
# find / -perm 2644
# find / -size +100M -exec rm -rf {} \;
# find / -perm /u=s # find / -perm /g=s
# find / -type f -name *.mp3 -size +10M -exec rm {} \; #常用find操作,通过find出指定目录下的特定类型特定名称的文件,然后进行修改,移动,删除等操作。
# find / -perm /u=r
# find / -perm /a=x
# find / -type f -perm 0777 -print -exec chmod 644 {} \;
# find / -type d -perm 777 -print -exec chmod 755 {} \;
# find . -type f -name "linuxprobe.txt" -exec rm -f {} \;
# find . -type f -name "*.txt" -exec rm -f {} \; OR # find . -type f -name "*.mp3" -exec rm -f {} \;
# find /tmp -type f -empty
# find /tmp -type d -empty
# find /tmp -type f -name ".*"
# find / -user root -name linuxprobe.txt
# find /home -user linuxprobe
# find /home -group developer
# find /home -user linuxprobe -iname "*.txt"
# find / -mtime 50
# find / -atime 50
# find / -mtime +50 –mtime -100
# find / -cmin -60
# find / -mmin -60
# find / -amin -60
# find / -size 50M
# find / -size +50M -size -100M