查看当前进程
ps
ps -e
终止进程
kill pid
暂停进程
kill -STOP pid
继续执行进程
kill -CONT pid
&操作符
使进程在后台运行
如:
gunzip file.gz &
查看当前进程
ps
ps -e
终止进程
kill pid
暂停进程
kill -STOP pid
继续执行进程
kill -CONT pid
&操作符
使进程在后台运行
如:
gunzip file.gz &
本文标题:常用shell命令行命令-进程相关
本文链接:https://www.haomeiwen.com/subject/fhildctx.html
网友评论