This file is indexed.

/usr/share/doc/runawk/examples/demo_power_getopt2 is in runawk 1.5.1-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
#!/usr/bin/env runawk

#use "power_getopt.awk"

#.begin-str help
# power_getopt - program demonstrating a power of power_getopt.awk module
# usage: power_getopt [OPTIONS]
# OPTIONS:
#    -?|--help                  display this screen
#.end-str

BEGIN {
	# the only implemented functionality is -?|--help options
	exit 0
}