我正在使用drush运行一个大的PHP脚本。该脚本需要很长时间才能运行 - 可能需要几个小时,我想随时随地停止它。 这是我正在运行的示例php脚本:
$iter = 1;
while( $iter <= 50 ){
echo "iteration no ". $iter ."\n";
$iter++;
sleep( 1 );
}
这是我运行它的命令:
$ drush php-script userstest.php
当我按下CTRL + C时,drush命令停止,但php脚本继续运行。 以下是它的外观:
$ drush php-script userstest.php
iteration no 1
iteration no 2
iteration no 3
$ iteration no 4
iteration no 5
iteration no 6
iteration no 7
^C
$ iteration no 8
iteration no 9
iteration no 10
iteration no 11
^C
$ iteration no 12
iteration no 13
iteration no 14
iteration no 15
它一直持续到PHP脚本实际完成。 我怎么能停止剧本呢?
答案 0 :(得分:1)
Drush没有功能参数,试试drush help
?如果不是......
验证运行的进程是否是PHP进程:
killall -u yourusername php
或任何由drush运行的进程。
我认为在这种情况下,这是唯一可以实现此目的的方法。