后台运行命令
如果使用 nohup 命令提交作业,那么在缺省情况下该作业的所有输出都被重定向到一个名为 nohup.out 的文件中,除非另外指定 了输出文件:
输出被重定向到 myout.file 文件中。
nohup command > myout.file 2>&1 & |
不输出日志文件。
nohup command >/dev/null 2>&1 & |
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment