#! /bin/csh -f 

#set variable
	set fn1 = $1
	set fn2 = $2
	set fn3 = $3

#find directory 
	if ( $fn3 != "" ) then 
		cd $fn3
  	endif

#execution
	if ( -e $fn1 ) then
		cp $fn1 ft11
		$dvdir/object/brho.exe
		cp ft12 $fn2
		rm ft11
		rm ft12
		rm c06
	else
		echo $fn1 'not found'
		exit	
	endif
