This file is indexed.

/usr/share/doc/bash/examples/functions/shcat2 is in bash-doc 4.3-6ubuntu1.

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
shcat()
{
	while read -r line
	do
		echo "$line"
	done
}

shcat2()
{
	while [ $# -ge 1 ]; do
		case "$1" in
		-)	shcat ;;
		*)	shcat < "$1" ;;
		esac
		shift
	done
	exit 0
}