discourse/config/cloud/cloud66/scripts/curl.sh

14 lines
207 B
Bash
Raw Normal View History

2013-10-14 12:09:29 -04:00
#!/bin/bash
FILE=/tmp/curl_done
if [ -f $FILE ]
then
echo "File $FILE exists..."
else
curl localhost
curl localhost
curl localhost
curl localhost
curl localhost
touch /tmp/curl_done
fi