我想做的是递归删除所有html文件,省略template.html
和list.html
?
到目前为止,我有以下代码,但我不知道如何设置这两个文件名异常。
find . -name "*.html" -exec rm -rf {} \;
使用 -not:
find . -name "*.html" -not -name template.html -not -name list.html -exec rm -rf {} \;
你可以做到!
find . -type f \( -iname "*.html" ! -iname "template.html" ! -iname "list.html" \) -exec rm -rf {} \;
尝试以下操作:
find . -type f -iname \*.html ! -iname template.html ! -iname list.html -exec rm -f -- {} +