This file is indexed.

/usr/lib/speech_tools/config/rules/make_depend.awk is in libestools-dev 1:2.5.0-4.

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
BEGIN {s=0}

s==0 && $1=="#" && $2==name {s=1;next}

s==1 && NF==0 {s=2; next}

s==2 && NF==0 {s=3; next}

(s==0 || s==3) && NF==1 && $1=="NEW" {
      printf("\n# %s %s\n\n", name, date);
      s=4;
      next;
    }

s==0 || s==3 || s==4 {print}