后台运行了得停止呀,怎么找呢?
查看后台进程
1
ps -ef |grep test.sh
USER | PID | %CPU | %MEM | VSZ | RSS | TTY | STAT | START | TIME | COMMAND |
---|---|---|---|---|---|---|---|---|---|---|
root | 3386 | 0.0 | 0.0 | 113696 | 1996 | pts/0 | S | Mar11 | 8:34 | /bin/sh ./jobs.sh |
root | 23197 | 0.0 | 0.0 | 112712 | 976 | pts/1 | S+ | 10:21 | 0:00 | grep –color=auto jobs.sh |
结束后台进程
1
kill -9 3386