mirror of
https://github.com/bvanroll/example-node-project.git
synced 2025-08-28 19:32:43 +00:00
11 lines
122 B
Bash
Executable File
11 lines
122 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export APP="$1"
|
|
echo "curling URL $APP in a loop..."
|
|
|
|
while true
|
|
do
|
|
curl $APP
|
|
sleep 2
|
|
done
|