Skip to content

Instantly share code, notes, and snippets.

@dharma017
Last active September 22, 2015 08:45
Show Gist options
  • Select an option

  • Save dharma017/88cc449a9bcae63d1f4e to your computer and use it in GitHub Desktop.

Select an option

Save dharma017/88cc449a9bcae63d1f4e to your computer and use it in GitHub Desktop.
Linux useful commands

####Find large files by showing the usage of each folder / file from smallest to largest on the box

du -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);}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment