#!/bin/sh

PIDFILE_send=/tmp/ttcpsend$USER$1

for pid in `cat $PIDFILE_send`; do
  kill $pid
done

rm -f $PIDFILE_send
