#! /bin/csh -f 

#set variable
	set fn = $1

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

#execution
	if ( -e c35 ) then
		cp c35 ft11
		$dvdir/object/cmtxtd.exe
	else
		echo 'c35 not found'
		exit	
	endif

	rm ft11
