Skip to content

Instantly share code, notes, and snippets.

@bxt
Created November 9, 2016 23:13
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 bxt/4b18eba7ccba02a26da7bf8b3cfaaa7b to your computer and use it in GitHub Desktop.
Save bxt/4b18eba7ccba02a26da7bf8b3cfaaa7b to your computer and use it in GitHub Desktop.
Keep only 1/50 of all files in a directory, remove others forever
ls | awk 'NR%50!=25' | xargs rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment