This file is indexed.

/usr/bin/rubber-pipe is in rubber 1.1-2.4ubuntu1.

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
#!/usr/bin/python
# This is just a wrapper script for the main Python program
# This script is part of Rubber, which is covered by the GPL license.
# (c) Emmanuel Beffara, 2003
import sys
sys.path.append("/usr/share/rubber")
try:
	from rubber.cmd_pipe import Main
	sys.exit(Main()(sys.argv[1:]))
except ImportError:
	print "I cannot find the program's modules, I am not installed correctly."
	sys.exit(1)