Created
August 13, 2012 17:24
-
-
Save shawnbutts/3342599 to your computer and use it in GitHub Desktop.
find files larger than 2GB in and below current directory
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 -size +2000000k -exec ls -lh {} \; | awk '{ {for (i = 9; i <= NF; i++)printf("%s ", $i);} print ": " $5 }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment