#! /bin/csh -f 

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

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

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

		if ( $nors == "n" || $nors == "N" ) then
			time $dvdir/object/nlvlbnds.exe 
		else if ($nors == "s" || $nors == "S" ) then
			time $dvdir/object/slvlbnds.exe 
		else if ($nors == "w" || $nors == "W" ) then
			time $dvdir/object/wlvlbnds.exe 
		else if ($nors == "u" || $nors == "U" ) then
			time $dvdir/object/ulvlbnds.exe 
		else if ($nors == "g" || $nors == "G" ) then
			time $dvdir/object/glvlbnds.exe 
		else if ($nors == "h" || $nors == "H" ) then
			time $dvdir/object/hlvlbnds.exe 
		else if ($nors == "i" || $nors == "I" ) then
			time $dvdir/object/ilvlbnds.exe 
		else if ($nors == "j" || $nors == "J" ) then
			time $dvdir/object/jlvlbnds.exe 
		else 
			echo  "lvlbnds [n/s/w/u/g/h/i/j] (filename)"
			exit
		endif

		rm lb2s
		rm lb6s
		cd   
	else
		echo  " lb4s or lb5s or f09 or f39  not exist "
		exit
	endif
