#!/bin/csh -f
#++++++++++++++++
#.IDENTIFICATION display
#.LANGUAGE       display(?)
#.AUTHOR         CDS Catalogues Service
#.ENVIRONMENT    
#.KEYWORDS       
#.VERSION  1.0   08-Apr-1999
#.PURPOSE        
#.COMMENTS       Display upsilon values from a level
#		Uses the fortran code compiled via "f77 getups.f"
#----------------

if ($?HTTP_HOST) echo "\begin{alltt}"

if ($#argv != 1) then
    echo "Usage: $0 level_number (in range 1 to 80)"
    exit 1
endif

(echo $1 ; /usr/users/cats/too/fcat table4) | a.out

if ($?HTTP_HOST) echo "\end{alltt}"
exit 0

