Created
March 18, 2017 01:21
-
-
Save bion/01a356f10ab06e4bede43f735b204eb3 to your computer and use it in GitHub Desktop.
ls-large-files
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
| #!/bin/bash | |
| dir=${1-"."} | |
| number=${2-"10"} | |
| find $dir -type f -print0 | | |
| xargs -0 du -s | | |
| sort -n | | |
| tail -$number | | |
| cut -f2 | | |
| xargs -I{} du -sh {} | | |
| sort -nr |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment