-
-
Save adriancmiranda/b28a9e7f51a44a8fd28c9ca97fc3b9ad to your computer and use it in GitHub Desktop.
"free" command for osx. Shows available memory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# encoding: utf-8 | |
# By Uğur Özyılmazel, @vigobronx | @ugurozyilmazel | |
# http://vigodome.com | http://ugur.ozyilmazel.com | http://github.com/vigo | |
def get_paged_memory_usage(match_string, paging=4096) | |
mvar = 3 | |
if match_string.split(/[^\w]/).length > 1 | |
mvar = 4 | |
end | |
paged_val = `vm_stat | grep "Pages #{match_string}:" | awk '{ print $#{mvar}}'`.to_i | |
gigabyte_val = (paged_val * paging) / 1024 / 1024 / 1000.0 | |
end | |
installed_memory = `sysctl -n hw.memsize`.to_i / 1024 / 1024 / 1000.0 | |
total_consumed = 0 | |
['wired down', 'active', 'inactive'].each { |key| total_consumed += get_paged_memory_usage(key) } | |
printf("%.2fG", (installed_memory-total_consumed)) # returns in gigabytes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment