#!/bin/csh -f
#
#	$Id: version.sed,v 1.27 2010-03-14 16:32:51 haley Exp $
#

set year = "2019"
set sitefile = `ncargpath ncarg`/"ncargsite"
if (-f $sitefile) then
  set sitenum = `head -1 $sitefile`
else
  set sitenum = "Site ID Number undefined for support."
endif  

if ($#argv > 0) then
  if ("$1" == "-v") echo 6.6.2
else

echo ""
cat <<EOF
NCAR Graphics Software Version 6.6.2
Copyright (C) 1987-$year, University Corporation for Atmospheric Research

NCAR Graphics is a registered trademark of the University Corporation
for Atmospheric Research.

The use of this Software is governed by a License Agreement.
EOF
echo ""
endif
