seanhussey (owner)

Revisions

gist: 206125 Download_button fork
public
Public Clone URL: git://gist.github.com/206125.git
Embed All Files: show embed
Text only #
1
2
# Find open file descriptors (I think) for mongrel
ps aux | grep mongrel_rails | awk '{print $2}' | xargs -n1 -I 'foo' /usr/sbin/lsof -p 'foo' | sort | awk '{print $2}' | uniq -c