Skip to content

Instantly share code, notes, and snippets.

@bion
Created March 18, 2017 01:21
Show Gist options
  • Select an option

  • Save bion/01a356f10ab06e4bede43f735b204eb3 to your computer and use it in GitHub Desktop.

Select an option

Save bion/01a356f10ab06e4bede43f735b204eb3 to your computer and use it in GitHub Desktop.
ls-large-files
#!/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