Slashdot Mirror


User: bjacobt

bjacobt's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. cut, tr, grep, xargs on (Useful) Stupid Unix Tricks? · · Score: 1

    ps -ef | grep | tr -s ' ' | cut -d' ' -f3 | xargs kill -9 replace -ef with -aux or -auxwww based on OS or need Based on the ps you use, you might want to check if cut -f3 returns the PID.