Answers for "linux remove pattern crom all files"

CSS
1

linux remove files except

/* " Be Careful !!! This will delete your folders recursively !!! " 
The below script was used to remove all files exept the last 5 in a pipline 
The ls -1v sorts the folders ascending by number. 
*/
sudo ls -1v | head -n -5 | xargs rm -r
Posted by: Guest on September-09-2021
0

remove all files in a directory linux that match pattern

find . -name '*.orig' #-delete
Posted by: Guest on July-03-2021

Code answers related to "linux remove pattern crom all files"

Browse Popular Code Answers by Language