This file is indexed.

/usr/bin/mkc_long_lines is in mk-configure 0.28.0-1.

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
17
#!/usr/bin/awk -f

############################################################
# Copyright (c) 2014 by Aleksey Cheusov
#
# See LICENSE file in the distribution.
############################################################

# processes backslash in the end of line

/\\$/ {
	printf "%s", substr($0, 1, length($0)-1)
	next
}
{
	print
}