Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
kill $(ps aux | grep ruby | grep -v grep | awk '{print $2}' | xargs)
for p in $(ps aux | grep ruby | grep -v grep | awk '{print $2}'); do kill $p; done
You can substitute kill9 for kill if necessary.
kill9
kill
kill $(ps aux | grep ruby | awk '{print $2}' | xargs)
for p in $(ps aux | grep ruby | awk '{print $2}'); do kill $p; done
pkill $(ps aux | grep ruby)
You can substitute kill9 for kill in the first two commands if necessary.