Skip to content

Instantly share code, notes, and snippets.

@akotlar
Created July 5, 2023 19:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akotlar/cab79d5a355c8c99dc9e4376b530c80d to your computer and use it in GitHub Desktop.
Save akotlar/cab79d5a355c8c99dc9e4376b530c80d to your computer and use it in GitHub Desktop.
Log free memory every 2 seconds
while true; do echo -e "\n$(date '+%a %H:%M:%S.%3N')\t$(free -h | awk 'NR==2 {print "Total:", $2, "Used:", $3, "Free:", $4, "Shared:", $5, "Buff/Cache:", $6, "Available:", $7}')" >> /path/to/log; sleep 2; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment