Membuat program looping
> Windows bat
using infinite loop evey 15s bat windows style
:loop
lynx -source "url"
PING 1.1.1.1 -n 1 -w 15000 > NUL
GOTO loop
— Faris Widyantho (@radenfaris) June 3, 2015
> Linux sh
$ cat every-5-seconds.shReferensi:
#!/bin/bash
while true
do
/home/ramesh/backup.sh
sleep 5
done
- http://www.thegeekstuff.com/2011/07/cron-every-5-minutes/
- http://stackoverflow.com/questions/166044/sleeping-in-a-batch-file
- http://ss64.com/nt/for.html
No comments:
Post a Comment