📜  nohup 重定向输出 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:44.341000             🧑  作者: Mango

代码示例1
nohup ./myscript.sh                            # output is in nohup.out
nohup ./myscript.sh > myscript.log &        # output is in myscript.log
nohup ./myscript.sh &                        # runs in background