This file is indexed.

/usr/bin/radiotray is in radiotray 0.7.3-5ubuntu1.

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/python

import sys,os
from os.path import dirname, join, pardir

try:
	from radiotray import radiotray_runner
except ImportError:
	basedir = os.path.dirname(os.path.realpath(__file__))
	workdir = join(basedir,'src')
	sys.path.insert(0, workdir)
	os.chdir(workdir)
	import radiotray_runner
	
radiotray_runner.main(sys.argv[1:])