Skip to content

Instantly share code, notes, and snippets.

@MaximeCulea
Created July 14, 2022 13:49
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 MaximeCulea/d056f0e37fecb6e097a95d39f58787bc to your computer and use it in GitHub Desktop.
Save MaximeCulea/d056f0e37fecb6e097a95d39f58787bc to your computer and use it in GitHub Desktop.
Linux Cheatset
# Find all wanted files by type and delete
find . -iname \*.pdf\* -exec rm -rf {} \;
find . -iname \*.zip\* -exec rm -rf {} \;
find . -iname \*.psd\* -exec rm -rf {} \;
find . -iname \*.pptx\* -exec rm -rf {} \;
find . -iname \*.mp4\* -exec rm -rf {} \;
# Top 10 heavy files
find . -printf '%s %p\n'| sort -nr | head -10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment