Created
July 16, 2017 01:15
-
-
Save hammeiam/8596a75029a5887eedc830cbe2b1803e to your computer and use it in GitHub Desktop.
recursively find movie files and sort by size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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