Prints du Unix command sorted by filesize, greater first. Useful when you finish space on your hard-drive and you want to know which dir takes up the most space. I searched the man pages for such an option but i found nothing.
du|perl -lpe 'push @_, [split]}{print "@$_" for sort{$b->[0]<=>$a->[0]
+}@_'|less