This file is indexed.

/usr/bin/ncargversion is in ncl-ncarg 6.3.0-6build1.

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 = "2015"
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.3.0
else

echo ""
cat <<EOF
NCAR Graphics Software Version 6.3.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