14 lines
207 B
Bash
14 lines
207 B
Bash
|
#!/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
|