Push dev work to master #2

Merged
sixteenmillimeter merged 416 commits from dev into master 2018-07-19 15:29:02 +00:00
1 changed files with 10 additions and 0 deletions
Showing only changes of commit fb1273614c - Show all commits

10
scripts/sequence.sh Normal file
View File

@ -0,0 +1,10 @@
#!/bin/bash
URL=$1
COUNTER=0
FRAMES=25
while [ $COUNTER -lt $FRAMES ]; do
echo The counter is $COUNTER
curl "$URL/frame"
sleep 60
((COUNTER++))
done