This file is indexed.

/usr/bin/cgnsupdate is in cgns-convert 3.1.4.2-1.

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
#!/bin/sh
if [ $# -lt 1 ]; then
  echo "usage: cgnsupdate inputCGNSfile [outputCGNSfile]"
  exit 1
fi
dir=`dirname $0`
if ! [ -x $dir/cgnscheck ]; then
  echo "cgnscheck does not exist in $dir"
  exit 1
fi
$dir/cgnscheck -U $1 $2