https://zhuanlan.zhihu.com/p/59297350
https://blog.csdn.net/thesre/article/details/127378228
nohup ./main > console.log 2>&1 &
,nohup会将日志写入到console.log文件里,如果想实时地查看,可以采用tail -f console.log
的方法。
- 查看nohup启动的脚本进程
如果脚本是用sh运行的,ps -ef | grep sh
,如果是bash,ps -ef | grep bash
.
0 条评论