Linux提供了多種方式來批量刪除指定文件,以下是幾種常用的方法:
rm *.txt
find /path/to/directory -name "*.txt" -delete
其中,/path/to/directory是要搜索的目錄路徑。
find /path/to/directory -name "*.txt" | xargs rm
其中,/path/to/directory是要搜索的目錄路徑。
請注意,上述命令可能會直接刪除文件,而不會詢問確認。因此,在使用這些命令時請謹慎操作,以防誤刪文件。