This file is indexed.

/usr/share/lifelines/src.ll is in lifelines-reports 3.0.61-2.

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
/*
* @progname       src.ll
* @version        2.0
* @author         McBride
* @category       sample
* @output         text
* @description
Here is a report program to list SOURces. The REFN and TITL
values are shown. Other tags can be added by duplicating
the lines that containing "myrefn" or "REFN" and replacing them
with the tag you want.

To process tags that have CONTinuation lines, or tags with no
values you need something more complicated.

"P. McBride" <pbmcbride@RCN.COM>
*/

proc main ()
{
   forsour(snode, i) {
     set(mytitle, "")
     set(myrefn, "")
     fornodes(root(snode), anode) {
       if(eqstr(tag(anode),"TITL")) { set(mytitle, save(value(anode))) }
       elsif(eqstr(tag(anode),"REFN")) {
         set(myrefn, save(value(anode)))
       }
     }
     myrefn  "\t"  key(snode)  "\t"  mytitle  nl()
   }
}