码迷,mamicode.com
首页 > 系统相关 > 详细

linux后台运行程序--nobup

时间:2018-11-18 23:43:34      阅读:406      评论:0      收藏:0      [点我收藏+]

标签:out   comm   语法   注销   运行命令   命令   符号   运行程序   tail   

用途:不挂断地运行命令。
语法:nohup Command [ Arg … ] [ & ]
描述:nohup 命令运行由 Command 参数和任何相关的 Arg 参数指定的命令,忽略所有挂断(SIGHUP)信号。在注销后使用 nohup 命令运行后台中的程序。要运行后台中的 nohup 命令,添加 & ( 表示”and”的符号)到命令的尾部。

例如:
nohup python -u test.py > nohup.out 2>&1 & 解决 python后台运行无输出的问题

查看nohup.out里面的日志
tail -f nohup.out 其中tail是为了看文件的尾部,因为nohup.out是时时更新的,所以用tail -f查看时时更新的内容
tail -fn 50 nohup.out #50行

linux后台运行程序--nobup

标签:out   comm   语法   注销   运行命令   命令   符号   运行程序   tail   

原文地址:https://www.cnblogs.com/wayneliu007/p/9980356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!