14 lines
207 B
Bash
Raw Normal View History

2013-10-14 17:09:29 +01: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