cli oneliner - sort top 10 directories
One simple oneliner that I picked up few years ago, and it is great for finding directories that eat up most of space in current directory. ls -A | grep -v -e '^\.\.$'
A collection of 2 posts
One simple oneliner that I picked up few years ago, and it is great for finding directories that eat up most of space in current directory. ls -A | grep -v -e '^\.\.$'
Quick tip to see which are the biggest currently installed packages on your Fedora box: rpm -qa --queryformat '%10{size}-%{name}-%{version}\n' | sort -k1,1n You might also be