Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkullick/0758cac4514d25fd4c587522f4ff8398 to your computer and use it in GitHub Desktop.
Save jkullick/0758cac4514d25fd4c587522f4ff8398 to your computer and use it in GitHub Desktop.
Remove All but x Newest Folders in Directory on Linux
KEEP=5
rm -rf `ls -td $PATH_TO_FILES/*/ | tail -n +$(($KEEP+1))`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment