#!/bin/csh -f
if ( $#argv != 1) then
	echo "Usage: drawconfig  configpass"
	exit 1
endif
set pwd=`pwd`

echo  " pwd is " $pwd

cd $EPICSTOP/Util;  
echo $pwd/$1 > ./Work/.configrc
source $EPICSTOP/Scrpt/setarch
./drawconfig$ARCH

cd $pwd






