DEV Community

Discussion on: Linux tools for check disk usage and folders size

Collapse
 
suckup_de profile image
Lars Moelleken

Some years ago, I added this little helper in my .dotfiles :)

# show the biggest files in a folder first
alias du_overview='du -h | grep "^[0-9,]*[MG]" | sort -hr | less'
Enter fullscreen mode Exit fullscreen mode

github.com/voku/dotfiles/blob/mast...