Skip to content

Instantly share code, notes, and snippets.

@theundefined
Created February 19, 2023 13:43
Show Gist options
  • Save theundefined/f6a2c1c03dd17f19b8841082831685f1 to your computer and use it in GitHub Desktop.
Save theundefined/f6a2c1c03dd17f19b8841082831685f1 to your computer and use it in GitHub Desktop.
#!/bin/ksh
export LC_ALL=C
echo `uptime|grep days|sed 's/.*up \([0-9]*\) day.*/\1\/10+/'; cat /proc/cpuinfo|grep MHz|awk '{print $4"/30 +";}'; free|grep '^Mem' |awk '{print $3"/1024/3+"}'; df -P -k -x nfs | grep -v 1k | awk '{if ($1 ~ "/dev/(scsi|sd)"){ s+= $2} s+= $2;} END {print s/1024/50"/15+70";}'`|bc|sed 's/\(.$\)/.\1cm/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment