This file is indexed.

/usr/share/runawk/fieldwidths.awk is in runawk 1.6.0-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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Written by Aleksey Cheusov <vle@gmx.net>, public domain
#
# This awk module is a part of RunAWK distribution,
#        http://sourceforge.net/projects/runawk
#
############################################################

# =head2 fieldwidth.awk
#
# By default AWK interpreter splits input lines into tokens according
# to regular expression that defines "spaces" between them using
# special variable FS. Sometimes it is useful to define a fixed-size
# fields for tokens. This is what this module is for. The
# functionality of fieldwidths.awk is very close to GNU awk's
# FIELDWIDTHS variable.
#
# =over 2
#
# =item I<fieldwidths(STRING, FW)>
#
# extracts substrings from STRING according to FW
# from the left to the right and assigns $1, $2 etc. and NF
# variable. FW is a space separated list of numbers that specify
# fields widths.
#
# =item I<fieldwidths0(FW)>
#
# Does the the same as `fieldwidths' function but splits $0 instead.
#
# =item I<FW>
#
# global variable. If it is set to non-empty string, all input
# lines are split automatically and the value of variable FS is
# ignored in this case.
#
# =back
#
# See example/demo_fieldwidths for the sample of usage
#

function fieldwidths (s, fw,                   arr,cnt,i){
	cnt = split(fw, arr, " ")

	for (i=1; s != "" && i <= cnt; ++i){
		$i = substr(s, 1, arr [i])
		s = substr(s, arr [i]+1)
	}

	NF = i-1
}

function fieldwidths0 (fw){
	fieldwidths($0, fw)
}

{
	if (FW != ""){
		fieldwidths0(FW)
	}
}