#! /bin/csh -f
# Last edited on 1999-02-01 00:07:48 by stolfi

set usage = "$0 [-describe]" 

set des = ( )

while ( ( $#argv > 0 ) && ( "x$1" =~ x-* ) )
  if ( ( $#argv >= 1  ) && ( "x$1" == "x-describe" ) ) then
    set des = ( $1 ); shift;
  else
    echo "invalid option $1"
    echo "usage: ${usage}"; exit 1
  endif
end

if ( $#argv != 0 ) then
  echo "usage: ${usage}"; exit 1
endif

text-to-class-gen -field 1 ${des}
