Skip to content

Instantly share code, notes, and snippets.

@rohan-molloy
Last active November 30, 2019 05:00
Show Gist options
  • Save rohan-molloy/5bf7cca87abf58156847cc25540a61d1 to your computer and use it in GitHub Desktop.
Save rohan-molloy/5bf7cca87abf58156847cc25540a61d1 to your computer and use it in GitHub Desktop.
Good demo of how to use variables in an awk expression

Print Memory Usage with Awk

Good demo of how to use variables in an awk expression

Memory Usage as a percentage

memused()  
{
    free -b | awk '/Mem/{ total=2; available=NF; print "MemoryUse:",(100.0*(total/available))"%"; }'; 
};

Memory Available as a percentage

memavail() 
{    
    free -b | awk '/Mem/{ total=2; available=NF; print "MemoryAvail:",(100.0*(1.0-(total/available)))"%"; }'; 
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment