This file is indexed.

/usr/share/xcrysden/Awk/in1.awk is in xcrysden-data 1.5.60-1.

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 {
  if ( unit == "" ) {
    unit=5;
  }
}

/K-VECTORS FROM UNIT:*/ {
  l     = length($0)
  part1 = substr($0, 1, 20);
  part2 = substr($0, 22);
  lrest = l-22;
  printf "%20s%1d%"lrest"s\n", part1, unit, part2;
  exit;
}
/a*/ { print; }