Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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
 
PREVIOUS NEXT
Tagged: #linux #remove #files
ADD COMMENT
Topic
Name
5+8 =