PHP CLi - 设置在命令行上运行然后继续?不希望 bash 脚本等待

发布于 2024-11-30 10:34:02 字数 99 浏览 2 评论 0原文

希望是一个快速的问题。我有一个运行 php 脚本的 .sh 脚本 - php 需要一些时间才能完成,我希望 .sh 脚本继续进行。

这可能吗?如果是这样,怎么会这样呢?

Hopefully a quick question. I have a .sh script running a php script - the php takes some time to complete and I want the .sh script to proceed.

Is that possible? And if so, how so?

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

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

发布评论

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

评论(1

灯角 2024-12-07 10:34:02

您是否尝试过 php somescript.php & ?末尾的 & 使 sh 脚本继续执行。

如果您希望 php 脚本比 shell 脚本更长寿,请尝试以下操作:

nohup php somescript.php >/dev/null 2>&1 &

Have you tried php somescript.php & ? The & at the end causes the sh script to continue executing.

If you want the php script to outlive the shell script, try this:

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