#This will report the percentage of memory in use % free | grep Mem | awk '{print $3/$2 * 100.0}' #Ex:23.8171 #This will report the percentage of memory that's free % free | grep Mem | awk '{print $4/$2 * 100.0}' #Ex:76.5013 #You could create an alias for this command or put this into a tiny shell script. The specific output could be tailored to your needs using formatting commands for the print statement along these lines: % free | grep Mem | awk '{ printf("free: %.4f %\n", $4/$2 * 100.0) }'
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter