This file is indexed.

/usr/share/proton-0.14.0/examples/python/messenger/README.txt is in libqpid-proton8-dev-examples 0.14.0-5.1ubuntu1.

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
This directory contains example scripts using the messenger API.

  send.py - a simple example of using the messenger API to send messages
  recv.py - a simple example of using the messenger API to receive messages

Note that depending on the address passed into these scripts, you can
use them in either a peer to peer or a brokered scenario.

For brokered usage:

  recv.py amqp://<broker>/<queue>

  send.py -a amqp://<broker>/<queue> msg_1 ... msg_n

For peer to peer usage:

  # execute on <host> to receive messages from all local network interfaces
  recv.py amqp://~0.0.0.0

  send.py -a amqp://<host> msg_1 ... msg_n