Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 239 Bytes

remove_mov_file_in_a_diretory.md

File metadata and controls

12 lines (8 loc) · 239 Bytes

找出指定目录下的指定后缀的文件,然后删除。

find file_path -name "*.mov" -print0 | xargs -n 10 -0 rm -rf

例如,当然目录

find . -name "*.mov" -print0 | xargs -n 10 -0 rm -rf