aboutsummaryrefslogtreecommitdiff
path: root/bin/dub
blob: 94653b77cccf74af905d6cbbc9ec7af76c40a1ae (plain) (blame)
1
2
3
4
5
6
#!/bin/sh
# List the biggest files in a directory
cd -- "${1:-.}" || exit
du -bs -- * |
sort -k1 -nr |
sed "${2:-10}"q