sysctl -a | grep swap
$ sudo pkill -HUP -u _windowserver
| #!/usr/bin/env ruby | |
| require 'pit' | |
| require 'octokit' | |
| org_name = ARGV[0] | |
| unless org_name | |
| abort "Usage #{$0} org_name" | |
| end |
| class Symbol | |
| def | other | |
| -> arg { other.to_proc[arg.send(self)] } | |
| end | |
| def call(*args) | |
| -> arg { arg.send(self, *args) } | |
| end | |
| end |