This file is indexed.

/etc/elvis/elvis.arf is in elvis-console 2.2.0-11.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" SAVE THE CURRENT STATE OF THE "saveregexp" OPTION
local nosaveregexp
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" TAKE A GUESS AT THE BUFFER'S PREFERRED DISPLAY MODE
if !userprotocol
then {
 if knownsyntax(filename)
 then set! bufdisplay=syntax
 if os=="unix" && buflines >= 1
 then {
  try 1s/\V^#! *[^ ]*\/\([^ ]\+\).*/set! bufdisplay="syntax \1"/x
  if bufdisplay=="syntax env"
  then try 1s/\V^#! *[^ ]*\/[^ ]\+ \([^ ]\+\).*/set! bufdisplay="syntax \1"/x
  if bufdisplay<<11=="syntax perl"
  then set! bufdisplay="syntax perl"
  if bufdisplay<<12=="syntax tclsh"
  then set! bufdisplay="syntax tcl"
 }
 if !newfile
 then {
  if readeol=="binary" && bufdisplay=="normal" && (partiallastline || !binary)
  then set! bufdisplay=hex
  switch tolower(dirext(filename))
  case .man set! bufdisplay=man
  case .tex set! bufdisplay=tex
  case .htm
  case .html
  case .shtml
  case .dhtml set! bufdisplay=html
  if buflines >= 2 && bufdisplay=="hex"
  then try 1,2s/\V^\s*<[HIThit!]/set! bufdisplay=html/x
  if (filename<<5=="http:" || filename<<4=="ftp:") && strlen(dirext(filename))<4 && bd=="hex"
  then set! bufdisplay=normal
  if bufdisplay=="normal" && buflines >= 1
  then try 1s/\V^From .*/set! bufdisplay="syntax email"/x
  if dirdir(filename)=="/tmp" || dirdir(filename)=="/var/tmp"
  then set! bufdisplay="syntax email"
  if strlen(dirext(filename))==2 && isnumber(filename>>1) && buflines>=1
  then try 1s/\V^\./set! bufdisplay=man/x
 }
 if bufdisplay=="html" && readonly
 then set locked
 if bufdisplay=="html"
 then set nosmartargs
 if readonly && (bufdisplay=="html" || bufdisplay=="man")
 then try set nospell
 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 " Set the buffer's "initialsyntax" option, based on "prefersyntax"
 if (bufdisplay=="html" || bufdisplay=="man" || bufdisplay=="tex")
 then {
  try {
   switch prefersyntax
   case always	 set isyn
   case local	 let isyn = !readonly && dirdir(filename) == "."
   case writable let isyn = !readonly
   case never	 set noisyn
  }
 }
 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 " Some messages
 if tolower(basename(program))!="elvis" && !ro && (bd=="html" || bd=="man" || bd="tex")
 then message To toggle the display mode, hit ^Wd
 if partiallastline && readeol!="binary"
 then warning Partial last line
}
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Set mapmode to the bufdisplay, if appropriate
switch bufdisplay
case html
case man
case tex let! mapmode=bufdisplay
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Store the file's timestamp
let timestamp = time(filename)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" EXECUTE MODELINES, IF "modeline" OPTION IS SET
if modeline && buflines >= 1 && buflines <= modelines * 2
then try %s/\V[ev][xi]:\(.*\):/\1/x
if modeline && buflines > modelines * 2
then {
 eval try 1,(modelines)s/\V[ev][xi]:\\\(.*\\\):/\1/x
 eval try (buflines - modelines + 1),(buflines)s/\\V[ev][xi]:\\\(.*\\\):/\1/x
}