Initial import

This commit is contained in:
2020-04-16 10:02:11 +02:00
commit 234bc3e264
10 changed files with 392 additions and 0 deletions

10
curlloop.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
export APP="$1"
echo "curling URL $APP in a loop..."
while true
do
curl $APP
sleep 2
done