[BASH] LOOPING SCRIPT FOR RETRY FAILED JOBS LARAVEL - fourslickz/notes GitHub Wiki
#!/bin/bash
cat failed_ids.txt | while read line
do
echo "retry $line"
php74 /var/www/html/project/artisan queue:retry $line
done
#!/bin/bash
cat failed_ids.txt | while read line
do
echo "retry $line"
php74 /var/www/html/project/artisan queue:retry $line
done