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 进程?
我有几个 cronjobs 每小时运行不同的 php 脚本。所以假设我有 cron1.php、cron2.php 和 cron3.php。每当我运行 cron2.php 时,我都想杀死所有正在运行的 PHP 执行该脚本的实例(而不是 cron1.php 或 cron3.php)。我可以做“killall php”,但这会阻止所有这些。
kill `pgrep -f cron2.php`
感谢 Waleed Khan 展示了正确的道路