📌  相关文章
📜  linux 在后台运行命令并将输出重定向到文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:26.256000             🧑  作者: 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