Skip to content

Instantly share code, notes, and snippets.

@thefotios
Created August 23, 2013 20:12
Show Gist options
  • Save thefotios/6323515 to your computer and use it in GitHub Desktop.
Save thefotios/6323515 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
all_user_procs = %x[/bin/ps -e -o uid,pid | /bin/egrep "^\s+[0-9]{3,4}"]
pids_by_user = all_user_procs.lines.inject(Hash.new{|h,k| h[k] = []}) do |h,line|
(uid,pid) = line.split.map(&:to_i)
h[uid] << pid
h
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment