Created
October 30, 2015 08:47
-
-
Save jvanja/a81390680b5e88ae2355 to your computer and use it in GitHub Desktop.
Find 10 largest files under current directory and show them
This file contains 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 . -type f -exec ls -s {} \; | sort -n -r | head -10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment