#!/bin/sh

PIDFILE_recv=/tmp/ttcprecv$USER$1

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

rm -f $PIDFILE_recv
