1 2 3 4 5 6 7 8
#!/usr/bin/bash ./scripts/start-gateway.bash > gw.out 2> gw.err & while [ 0 ]; do sleep 60 curl -G http://localhost:5000/v1/api/tickle > /dev/null 2> /dev/null done