#! /bin/csh -f 

#set variable
	set fn = $1

#execution
	if ( -e f05 && $fn != "" ) then
		$dvdir/object/bllist.exe > $fn
	else if ( -e f05 && $fn == "" ) then
		$dvdir/object/bllist.exe
	else
		echo 'f05 not found'
		exit
	endif
