linux启动后,会默认打开3个文件描述符,0表示标准输入,1表示正确输出,2表示错误输出。
nohup ping www.baidu.com 1>result.out 2>result.out & #将正确输出和错误输出均写入result.out文件
nohup ./program > /dev/null 2>error.log & #只记录警告级别比较高的日志 nohup ./program > /dev/null 2>&1 & #不想输出日志,什么日志都不要,只要服务能正常运行就行了
标签:输出,nohup,重定向,result,linux,后台,日志,out From: https://www.cnblogs.com/boye169/p/17030374.html