#!/bin/sh
echo "Screaming at $1 on port $2... Press CTRL-C to exit"
while [ "1" = "1" ]; do
  ./myndscream $1 $2 >>/dev/null 2>&1
done
