Answers for "remove in a certain file linux"

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

removing a file in linux

#use the command rm <file or foldername>
#for example removing a file called book
rm book
Posted by: Guest on May-05-2021

Code answers related to "remove in a certain file linux"

Browse Popular Code Answers by Language