- 在当前目录及其子目录中查找所有以
.txt
为扩展名的文件。 - 在
/var/log
目录中查找所有修改时间在过去7天内的文件。 - 在
/home
目录中查找所有属于用户john
的文件。 - 在当前目录及其子目录中查找所有大小超过100MB的文件。
- 在
/etc
目录中查找所有以.conf
为扩展名的文件,并打印出它们的文件名和所属用户。
find . -name “.*txt” -type f
find /var/log -type f -atime -7
find /home -type f -user john
find . -type f -size +100M
find /etc -name “*.conf”