在Linux中,有多种方法可以批量删除文件。以下是几种常用的方法:
$ rm *.txt
$ find . -type f -name "*.txt" -exec rm {} \;
$ find . -type f -name "*.txt" | xargs rm
rm -r
rm -f
请注意,删除文件是一个危险的操作,请确保你要删除的文件是你想要删除的,并谨慎使用这些命令。