11 lines
142 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
2014-08-11 16:30:26 +05:30
curl --retry 5 localhost
2013-10-14 17:09:29 +01:00
touch /tmp/curl_done
2014-08-11 16:30:26 +05:30
fi