Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有一个用 PHP 文件编写的 PHP 脚本,它有一个 while 循环,我会创建一个 shell 脚本(比如test.sh)并告诉 shell 脚本运行 php 文件。
test.sh
现在,如果我sh test.sh在 EC2 实例上的 Linux 终端中执行操作,然后关闭终端,php 脚本会继续运行吗?(记住我在 PHP 文件中有一个 while 循环)
sh test.sh
没有在屏幕中启动脚本。
安装屏幕程序。然后你可以开始你的脚本&
&
sh test.sh &
然后你的脚本在后台运行。
编辑:回答只运行一次 cron/脚本
Bash 脚本只运行一次