This file is indexed.

/usr/games/sky is in beneath-a-steel-sky 0.0372-4.

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
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
#!/bin/sh -e

domain=sky

if [ $(which gettext) ]; then
	gettext="gettext --domain=$domain -s --"
else
	gettext=echo
fi

usage()
{
	$gettext "Usage: sky [OPTION]"
	$gettext "Start Beneath a Steel Sky"
	echo
	$gettext "--help       display this help and exit"
	$gettext "--version    display version information and exit"
}

version()
{
	$gettext "Beneath a Steel Sky v0.0372"
	$gettext "Copyright (C) Revolution Software Ltd."
	$gettext "ScummVM engine Copyright (C) The ScummVM Team"
}

if [ "$#" -gt "1" ]; then
	usage
	exit 1
elif [ "$#" -lt "1" ]; then
	/usr/games/scummvm -p /usr/share/scummvm/beneath-a-steel-sky sky
else
	case "$1" in
	--help)
		usage
		;;
	--version)
		version
		;;
	*)
		usage
		exit 1
		;;
	esac
fi

exit 0