【Linux命令】命令行查找文件并进行操作时间:2023-08-29 15:52:08查找: #找./下的所有txt文件,输出个数 find ./ -name "*.txt" | wc -l #查找并删除 find ./ -name "*.txt" -exec rm -f {} \;