Never been to TextSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

About this user

Will Norris http://willnorris.com

« Newer Snippets
Older Snippets »
1 total  XML / RSS feed 

Remove all but X most recent files in directory

Remove all but 5 (or whatever number) of the most recent files in a directory. Great if you have a directory of log files and you only want to keep a few of the recent ones.
rm `ls -t | awk 'NR>5'`

« Newer Snippets
Older Snippets »
1 total  XML / RSS feed