linux将程序设为后台运行的命令

$ nohup ./lotcalc 2>&1 > lotcalc.log &

解释:

其中 0、1、2分别代表如下含义:
 0 – stdin (standard input)
 1 – stdout (standard output)
 2 – stderr (standard error)

nohup ./lotcalc >lotcalc.log 2>&1 &

nohup+最后面的& 是让命令在后台执行

>lotcalc.log 是将信息输出到lotcalc.log日志中

2>&1 是将标准错误信息转变成标准输出,这样就可以将错误信息输出到lotcalc.log 日志里面来。

相关推荐