All pastes #1920798 Raw Edit

find space wasters

public shellscript v1 · immutable
#1920798 ·published 2010-08-20 04:11 UTC
rendered paste body
#!/bin/shfiles=$(find / -size +100k -xdev | xargs dpkg -S)IFS=''for n in $files ; do        pkg=$(echo $n | cut -d: -f1)        file=$(echo $n | cut -d' ' -f2)        size=$(du -k $file | cut -f1)        echo "$size kB is taken by $file from $pkg"done | sort -n -r | head -n100