nohup
执行go build的文件报错:
[root@iZf8z9gs5xht62gcoz8u81Z testproject]# nohup: ignoring input and redirecting stderr to stdout nohup: failed to run command ‘main’: No such file or directory
解决:
nohup ./main > log.log 2>&1 &
# 0、1和2分别表示标准输入、标准输出和标准错误信息输出