I would like to know of it is possible to execute a Cron job every 30 seconds and increment an argument from a value (1 for exemple) to another (50000) :
Like :
wget https://mon-url.com/file/cron.php?id=1 >/dev/null 2>&1
wget https://mon-url.com/file/cron.php?id=2 >/dev/null 2>&1
wget https://mon-url.com/file/cron.php?id=3 >/dev/null 2>&1
wget https://mon-url.com/file/cron.php?id=4 >/dev/null 2>&1
....
wget https://mon-url.com/file/cron.php?id=50000 >/dev/null 2>&1
Is there any command to do that programaticaly ?
Thanks