This file is indexed.

/usr/lib/noweb/btdefn is in noweb 2.11b-9.

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
#!/bin/sh

# turn backticks into definitions

awk '
/^@begin code / { code = 1 }
/^@end code / { code = 0 }
code && /^@text .*".*`.*"/ { print; next }
code && /^@text .*`/ {
  while (i = match($0, /`[a-zA-Z_][a-zA-Z0-9_]*/)) {
    id = substr($0, i+1, RLENGTH-1)
    sub(/`[a-zA-Z_][a-zA-Z0-9_]*/, id)
    print "@index defn " id
  }
}
{print}'