Dans le répertoire courant, recherchez tous les fichiers nommés linuxprobe.txt
# find . -name linuxprobe.txt ./linuxprobe.txt
Trouvez tous les fichiers nommés linuxprobe.txt dans le répertoire personnel
# find /home -name linuxprobe.txt /home/linuxprobe.txt
Trouvez le fichier nommé linuxprobe.txt dans un répertoire spécifique, en ignorant la casse du nom du fichier
# find /home -iname linuxprobe.txt ./linuxprobe.txt ./Linuxprobe.txt
Recherchez un répertoire nommé linuxprobe dans le répertoire racine
# find / -type d -name linuxprobe /linuxprobe
Trouvez le fichier nommé linuxprobe.php dans le répertoire courant
# find . -type f -name linuxprobe.php ./linuxprobe.php
# find . -type f -name "*.php" ./linuxprobe.php ./login.php ./index.php
Trouver tous les fichiers avec l'autorisation 777 dans le répertoire actuel
# find . -type f -perm 0777 -print
Trouver tous les fichiers du répertoire racine avec des autorisations autres que 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
本文原创地址:https://www.linuxprobe.com/linux-33-find.html作者:王毅,审核员:逄增宝
本文原创地址:https://www.linuxprobe.com/linux-33-find.html编辑:王毅,审核员:暂无
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!