Saya telah membuat pekerjaan cron untuk situs saya yang tercantum di bawah ini dan mereka berfungsi dengan baik. Saya mencetak semua pekerjaan cron dengan menggunakan skrip PHP ini:
$cronfiles=exec('crontab -l',$output);
echo "<pre>";
print_r($output);
Output yang mana:
[0] => 0 0 * * * wget php -q http://www.example.com/report_send.php
[1] => 0 0 * * * wget php -q http://www.example.com/event_reminder.php
[2] => 0 0 * * * wget php -q http://www.example.com/user_reminder.php
[3] => * * * * * wget php -q http://www.example.com/cleardata.php
Sekarang saya ingin menghapus atau menghapus satu cron job dari server saya melalui perintah. Misalnya saya ingin menghapus " 0 0 * * * wget php -q http://www.example.com/event_reminder.php
" cron job dari server.
Saya mencoba crontab -r
perintah yang menghapus semua pekerjaan cron dari server saya tetapi saya ingin menghapus pekerjaan cron tertentu.
Bisakah Anda membantu saya mencari solusinya?