Created
February 3, 2017 14:18
-
-
Save madeinnordeste/d2ce8f19d74099eccb78c4aa97cf7068 to your computer and use it in GitHub Desktop.
Find large files in linux
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 . -type f -size +500M -exec ls -lh {} \; | awk '{ print $9 ": " $5 }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment