bash:脚本不在后台运行

发布于 2024-11-14 09:14:33 字数 127 浏览 1 评论 0原文

我有一个执行多个 Linux 命令的脚本。当我运行“./script.sh &”时它工作正常,直到我取消控制台。但是,当我再次登录时,脚本似乎正在后台运行,但没有执行任何操作。

可能是什么问题?

谢谢

I have a script that performs several linux commands. When I run "./script.sh &" it works fine until I cancel the console. However, when I login again the scritp seems to be running in background but not doing anything.

What can be the problem?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

把时间冻结 2024-11-21 09:14:33

您在启动时忘记使用 nohup

You forgot to use nohup when starting it.

傾城如夢未必闌珊 2024-11-21 09:14:33
nohup {command} 0 2>/dev/null &

应该适合你

nohup {command} 0 2>/dev/null &

should work for you

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文