Remove all files except some from a directory

前端 未结 19 1125
生来不讨喜
生来不讨喜 2020-11-30 16:36

When using sudo rm -r, how can I delete all files, with the exception of the following:

textfile.txt
backup.tar.gz
script.php
database.sql
info.         


        
相关标签:
19条回答
  • 2020-11-30 17:06

    I prefer to use sub query list:

    rm -r `ls | grep -v "textfile.txt\|backup.tar.gz\|script.php\|database.sql\|info.txt"`
    

    -v, --invert-match select non-matching lines

    \| Separator

    0 讨论(0)
提交回复
热议问题