#! /bin/csh -f 

#set variable
	set fn = $1

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

#execution
	if ( -e f05 ) then
		$dvdir/object/dvtomcm.exe
	else
		echo 'f05 not found'
		exit
	endif
