/usr/bin/ncargversion is in ncl-ncarg 6.4.0-9.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #!/bin/csh -f
#
# $Id: version.sed,v 1.27 2010-03-14 16:32:51 haley Exp $
#
set year = "2017"
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.4.0
else
echo ""
cat <<EOF
NCAR Graphics Software Version 6.4.0
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
|