Re: how to kill a while loop...

2003-01-29 Thread Dan Nelson
In the last episode (Jan 28), Josh Brooks said: Hi, I ran a command like: while `some command` ; do something ; done and I missed the PID output when I backgrounded it. Now I want to kill this while process, but I cannot find it anymore. I tried to ps auxw | grep while, and grep

how to kill a while loop...

2003-01-28 Thread Josh Brooks
Hi, I ran a command like: while `some command` ; do something ; done and I missed the PID output when I backgrounded it. Now I want to kill this while process, but I cannot find it anymore. I tried to ps auxw | grep while, and grep do and so on, but I cannot find the process to kill it.