Top Level Namespace

Constant Summary collapse

NUMBER =
/\d+/

Instance Method Summary collapse

Instance Method Details

#runningObject



7
8
9
# File 'bin/remind', line 7

def running
  `ps aux`.split("\n").map{|line| line[NUMBER].to_i }
end