Skip to content

Instantly share code, notes, and snippets.

@realchrisolin
Created March 28, 2014 04:39
Show Gist options
  • Save realchrisolin/9825533 to your computer and use it in GitHub Desktop.
Save realchrisolin/9825533 to your computer and use it in GitHub Desktop.
greps /proc/meminfo to return amount of free memory
#!/bin/bash
getfree=`grep MemFree /proc/meminfo | awk '{print $2}'`
showfree=$(($getfree / 1024))
echo $showfree
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment