#! /bin/csh -f 

#set variable
	set fn = $1

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

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