#!/bin/sh

ip=$(cat ip.txt|tr -d "\n");
batch=$1

cmd="curl -X DELETE \"http://${ip}:8998/batches/${batch}\""
echo $cmd
eval $cmd
