#! /bin/csh -f 

#set variable
	set nors = $1
	set fn = $2

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

#execution
	if ( -e f09 && -e f39 ) then

		if ( $nors == "n" || $nors == "N" ) then
			time $dvdir/object/nbndodr.exe
		else if ($nors == "s" || $nors == "S" ) then
			time $dvdir/object/sbndodr.exe
		else if ($nors == "w" || $nors == "W" ) then
			time $dvdir/object/wbndodr.exe
		else if ($nors == "u" || $nors == "U" ) then
			time $dvdir/object/ubndodr.exe
		else if ($nors == "g" || $nors == "G" ) then
			time $dvdir/object/gbndodr.exe
		else if ($nors == "h" || $nors == "H" ) then
			time $dvdir/object/hbndodr.exe
		else if ($nors == "i" || $nors == "i" ) then
			time $dvdir/object/ibndodr.exe
		else if ($nors == "j" || $nors == "j" ) then
			time $dvdir/object/jbndodr.exe
		else 
			echo  "bndodr [n/s/w/u/g/h/i/j] (filename)"
			exit
		endif

		rm bn6
	else
		echo  " f09 or f39  not exist "
		exit
	endif
