command_rm

1. Shell 如何删除指定文件/文件夹外的所有文件

find . -type 'f' | grep -v 'xxxx' | xargs rm
find . -type 'd' | grep -v 'xxxx' | xargs rmdir

Comments