linux 删除文件夹下文件
时间:2021-05-24 02:31:05
收藏:0
阅读:0
find -name "*.txt" -exec rm -f ‘{}‘ \; 删除后缀为.txt的文件
echo "" > filename
评论(0)
find -name "*.txt" -exec rm -f ‘{}‘ \; 删除后缀为.txt的文件
echo "" > filename