This file is indexed.

/usr/share/THE/manual.the is in the-doc 3.3~b4-1.

This file is owned by root:root, with mode 0o644.

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
'extract /getenv HOME/'
 myhome = getenv.1

rnd = random(100000)

tmpfile    = ''myhome'/.the.man.'rnd''
edit_man   = 'zcat /usr/share/doc/the/the.man.gz > 'tmpfile''
rm_tmpfile = 'rm 'tmpfile''

'emsg Loading "The Hessling Editor Reference Manual"'
rc = run_os(edit_man)
If rc \= 0 Then
  Do
   'emsg Return code from edit_man' rc
   Exit 1
  End

'the 'tmpfile''
'SHift Left 4 ALL'
'set backup OFF'
'ssave 'tmpfile''
'set backup KEEP'

rc = run_os(rm_tmpfile)
If rc \= 0 Then
  Do
   'emsg Return code from rm_tmpfile' rc
   Exit 1
  End

'msg Done.'

Return