summaryrefslogtreecommitdiffstats
path: root/planetlab/ping.sh
blob: dfe7cf2401b1409899e509a9d3d2f08a982d7546 (plain)
1
2
3
4
5
#!/bin/bash
while true; do
	ping -c 1 -W 10 -n www.google.com > /dev/null && echo $(date +%s) >> ping.txt
	sleep 60
done