nhance/phpqueue.sh
2025-02-10 08:56:27 +05:30

8 lines
195 B
Bash
Executable File

#!/bin/bash
while true; do
echo "Running job at $(date)"
/usr/bin/php /var/www/nhance/zenith/public/index.php cli/processjob
sleep 1 # Optional: Add a sleep to avoid CPU overload
done