This file is indexed.

/usr/lib/x86_64-linux-gnu/fis-gtm/V6.3-000A_x86_64/gtmbase is in fis-gtm-6.3-000a 6.3-000A-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
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/sh
#################################################################
#								#
#	Copyright 2001 Sanchez Computer Associates, Inc.	#
#								#
#	This source code contains the intellectual property	#
#	of its copyright holder(s), and is made available	#
#	under a license.  If you do not know the terms of	#
#	the license, please stop and do not read further.	#
#								#
#################################################################
gtm_dist=/usr/lib/x86_64-linux-gnu/fis-gtm/V6.3-000A_x86_64
echo="/bin/echo -e"

gtmgbldir="./mumps.gld"
export gtmgbldir
export gtm_dist

$echo "Updating your login files to support GT.M. You must log out"
$echo "and log back in for these changes to take effect."
$echo ""

if [ -f $HOME/.cshrc ]; then
    grep "source $gtm_dist" $HOME/.cshrc  > /dev/null 2>&1
    if [ $? = 1 ]; then
	$echo "source $gtm_dist/gtmcshrc" >> $HOME/.cshrc
    fi
fi

if [ -f $HOME/.profile ]; then
    grep ". $gtm_dist" $HOME/.profile > /dev/null 2>&1
    if [ $? = 1 ]; then
	$echo ". $gtm_dist/gtmprofile" >> $HOME/.profile
    fi
fi