Skip to content

Instantly share code, notes, and snippets.

@johnnian
Created November 18, 2017 02:02
Show Gist options
  • Save johnnian/b28115dc3ad79728c4609b966c8859f5 to your computer and use it in GitHub Desktop.
Save johnnian/b28115dc3ad79728c4609b966c8859f5 to your computer and use it in GitHub Desktop.
free Linux System Memory in time
#!/bin/sh
#description: release memory
free -m|awk '/^Mem/ {if($4<512) {system("sync&&echo 3 > /proc/sys/vm/drop_caches");}}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment