0%

【shell】批量删除除了某个文件外的其他所有文件

1
rm -f !(no_delete_file1|no_delete_file2)

或者

1
ls |grep -v no_delete_file |xargs rm -f