This file is indexed.

/usr/lib/python2.7/dist-packages/gplugs/echo.py is in gozerbot 0.99.1-5.

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
20
21
22
# plugs/echo.py
#
#

""" simple echo command """

__copyright__ = 'this file is in the public domain'

from gozerbot.tests import tests
from gozerbot.commands import cmnds
from gozerbot.examples import examples
from gozerbot.plughelp import plughelp

plughelp.add('echo', 'simply write back what you tell it')

def handle_echo(bot, ievent):
    """ say back what is being said """
    ievent.reply(ievent.rest)

cmnds.add('echo', handle_echo, 'USER')
examples.add('echo', "echo Hello World!", 'echo')
tests.add('echo booo', 'booo')