[LINUX] find a big files on linux - fourslickz/notes GitHub Wiki

du -ah /* 2>/dev/null | sort -rh | head -n 10

only for current directory

du -h -d1 ./
du -h --max-depth=1 /path/to/search | sort -hr | head -n 10