Linux提供了多种方式来批量删除指定文件,以下是几种常用的方法:
rm *.txt
find /path/to/directory -name "*.txt" -delete
其中,/path/to/directory是要搜索的目录路径。
find /path/to/directory -name "*.txt" | xargs rm
其中,/path/to/directory是要搜索的目录路径。
请注意,上述命令可能会直接删除文件,而不会询问确认。因此,在使用这些命令时请谨慎操作,以防误删文件。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: Linux中进程之间的父子关系是什么