This file is indexed.

/usr/share/lifelines/findmissing.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
/*
 * @progname       findmissing.ll
 * @version        1.0
 * @author         
 * @category       
 * @output         Text
 * @description    
 *
 * find persons that are 'isolated' in your database - no parents and not
 * in any families..
 */
proc main ()
{
        "THE FOLLOWING PERSONS ARE 'ISOLATED' IN YOUR DATABASE" nl() nl()
        forindi(indi, num) {
                if (and(not(parents(indi)), eq(0,nfamilies(indi)))) {
                        name(indi) " (" key(indi) ")" nl()
                }
        }
}