Theo Wribe wrote:
How do I create a crontab that run's #ping IP every 10 seconds?Tried crontab -e 0,10,20,30,40,50 * * * * /bin/ping -s 8 -c 1 www.sunet.se 1> /dev/null 2> /dev/null But it doesn't seem to work. Thanks Theo
There isn't one. Cron is limited to minutes. If you want seconds then I would suggest: while true; do ping -s 8 -c 1 www.sunet.se ; sleep 10; done