Remove all files except some from a directory

前端 未结 19 1195
生来不讨喜
生来不讨喜 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:46

    Rather than going for a direct command, please move required files to temp dir outside current dir. Then delete all files using rm * or rm -r *.

    Then move required files to current dir.

提交回复
热议问题