#!/bin/bash # The first level ("gallen" in this case) is the namespace. counter=0 while true; do curl http://localhost:8111/gallen/agogos -d @$1 -H "Content-Type: application/cloudevents+json" counter=$((counter+1)) echo $counter done