Wednesday, 7 June 2017

Kill all IRB and PRY process Raw

ps -ef | grep 'irb' | awk '{print $2}' | xargs kill -9
ps -ef | grep 'pry' | awk '{print $2}' | xargs kill -9
view raw gistfile1.sh hosted with ❤ by GitHub

No comments:

Post a Comment