This file is indexed.

/usr/share/apertium/apertium-createmodes.awk is in apertium 3.1.0-1.3.

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
{
  if($0 ~ /----.+----/)
  {
    HEAD = substr($0, 5, length($0)-8);
    split(HEAD, ARR, ":");
    NAME = substr(ARR[1], 5, length(ARR[1]));
  }
  else if(HEAD != 0)
  {
    myfilename = NAME ".mode";
    if(ARR[3] == "yes")
    {
      myfilename = "../" myfilename;
    }
    # fool code because a bug in mawk
    printf $0 "\n"  >> myfilename;
    close(myfilename);
  }
}