Remove all files except some from a directory

前端 未结 19 1160
生来不讨喜
生来不讨喜 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 16:57

    Trying it worked with:

    rm -r !(Applications|"Virtualbox VMs"|Downloads|Documents|Desktop|Public)
    

    but names with spaces are (as always) tough. Tried also with Virtualbox\ VMs instead the quotes. It deletes always that directory (Virtualbox VMs).

提交回复
热议问题