This file is indexed.

/usr/bin/txaws-discover is in python-txaws 0.2.3-1ubuntu1.

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

# Copyright (C) 2010 Jamu Kakar <jkakar@kakar.ca>
# Licenced under the txaws licence available at /LICENSE in the txaws source.

import os
import sys

if os.path.isdir("txaws"):
    sys.path.insert(0, ".")

from txaws.client.discover.entry_point import main


sys.exit(main(sys.argv))