pixelhandler

Pushin' & pullin' pixels on the net

Command Line Tip to Find Running Apps and Kill ‘Em

# find running apps :
ps aux | grep ruby
ps -awwx | grep mysql
# find running app on port number
ps aux | grep 12005
# kill process, first number listed follow above result
kill XXXXX

Comments