在Linux中,你可以使用find
命令来查找文件并应用某些操作
find . -type f -name "*.txt"
cat file.txt
find . -type f -empty
.
开头的文件):find . -type f -name ".*"
find . -type f -size +1M
find . -type f -name "example*" -exec cat {} \;
find . -type f -name "*.log" -exec mv {} logs/ \;
find . -type f -name "*.txt" -exec rm {} \;
请注意,在使用find
命令执行删除或其他危险操作时,务必谨慎,因为这些操作是不可逆的。在执行删除操作之前,建议先使用-ok
选项代替-exec
选项,以便在执行每个操作之前进行确认。例如:
find . -type f -name "*.txt" -ok rm {} \;