Skip to content

Instantly share code, notes, and snippets.

@Sushant
Created November 25, 2014 00:00
Show Gist options
  • Select an option

  • Save Sushant/06b3b9a06c9508c15617 to your computer and use it in GitHub Desktop.

Select an option

Save Sushant/06b3b9a06c9508c15617 to your computer and use it in GitHub Desktop.
Remove all dirs except the 10 most recent ones
for i in `ls -t | awk 'NR>10'`; do if [[ -d $i ]]; then rm -rf $i; fi; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment