Skip to content

Instantly share code, notes, and snippets.

@hammeiam
Created July 16, 2017 01:15
Show Gist options
  • Save hammeiam/8596a75029a5887eedc830cbe2b1803e to your computer and use it in GitHub Desktop.
Save hammeiam/8596a75029a5887eedc830cbe2b1803e to your computer and use it in GitHub Desktop.
recursively find movie files and sort by size
find . -iname '*.mkv' -o -iname '*.avi' -o -iname '*.mp4' -o -iname '*.mov' | xargs -d '\n' du -sh | sort -hr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment