Skip to content

Instantly share code, notes, and snippets.

@softprops
Created January 1, 2020 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save softprops/67ce8ba8757c0c01bb47e82dc19aa818 to your computer and use it in GitHub Desktop.
Save softprops/67ce8ba8757c0c01bb47e82dc19aa818 to your computer and use it in GitHub Desktop.
function getHumanReadable() {
echo $(echo $1 | awk '{ sum=$1 ; hum[1024**3]="Gb";hum[1024**2]="Mb";hum[1024]="Kb"; for (x=1024**3; x>=1024; x/=1024){ if (sum>=x) { printf "%.2f %s\n",sum/x,hum[x];break } }}')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment