This file is indexed.

/usr/share/viewmol/readdmol is in viewmol 2.4.1-24+b1.

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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/sh
#*******************************************************************************
#                                                                              *
#                                   Viewmol                                    *
#                                                                              *
#                               R E A D D M O L                                *
#                                                                              *
#                 Copyright (c) Joerg-R. Hill, October 2003                    *
#                                                                              *
#*******************************************************************************
#
# $Id: readdmol,v 1.6 2003/11/07 12:56:11 jrh Exp $
# $Log: readdmol,v $
# Revision 1.6  2003/11/07 12:56:11  jrh
# Release 2.4
#
# Revision 1.5  2000/12/10 15:14:52  jrh
# Release 2.3
#
# Revision 1.4  1999/05/24 01:27:07  jrh
# Release 2.2.1
#
# Revision 1.3  1999/02/07 21:55:32  jrh
# Release 2.2
#
# Revision 1.2  1998/01/26 00:49:12  jrh
# Release 2.1
#
# Revision 1.1  1996/12/10  18:46:40  jrh
# Initial revision
#
useVectors="n"
if [ "$1" = "-v" ]
then
  useVectors="y"
  shift
fi
if [ ! -f "$1" ]
then
  echo "\$error noFile 1 \"$1\""
  echo "\$end"
  exit 1
fi

case `uname -s` in
  SunOS*) AWK=nawk
          ;;
  IRIX*)  AWK=nawk
          ;;
  *)      AWK=awk
          ;;
esac

export LANG="C"
$AWK -v dir=`dirname "$1"` -v useVectors=$useVectors -f $VIEWMOLPATH/readdmol.awk "$1"