#!/bin/csh

Cutpaste4b -geometry +372+0 &
Cutpaste4a -geometry +0+0

#
# Kill both copies of client cutpaste4
#

set PS_LINE1=`ps | grep Cutpaste4b | grep -v grep`

set PID1=`echo $PS_LINE1 | cut -d' ' -f1`

kill -9 $PID1

#
# End of script
