Example sequencer control with a bash script.
This commit is contained in:
parent
292dc2913c
commit
fb1273614c
|
@ -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
|
Loading…
Reference in New Issue