Dernière activité 1723833732

Révision 70f7ff65567ad17319438169c3904788a73ab0f7

find-large-files.sh Brut
1du -k | sort -n | perl -ne 'if ( /^(\d+)\s+(.*$)/){$l=log($1+.1);$m=int($l/log(1024)); printf ("%6.1f\t%s\t%25s %s\n",($1/(2**(10*$m))),(("K","M","G","T","P")[$m]),"*"x (1.5*$l),$2);}'
2
3# from: https://gist.github.com/dharma017/88cc449a9bcae63d1f4e