Skip to content

Instantly share code, notes, and snippets.

@DevWellington
Created August 7, 2014 12:40
Show Gist options
  • Save DevWellington/73acbfa13952ee08fa38 to your computer and use it in GitHub Desktop.
Save DevWellington/73acbfa13952ee08fa38 to your computer and use it in GitHub Desktop.
Monitor de Memoria Livre - Ubuntu 13.04
#!/bin/bash
while true; do
clear;
echo "Free Memory:";
free -h | grep Mem: | awk -F' ' '{print $4}';
sleep 10;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment