It's early days, the tool can publish.
``` $ rabbiteer --help Rabbiteer 0.1.0 Martin Algesten martin@algesten.se Simple input/output tool for RabbitMQ
USAGE: rabbiteer [OPTIONS] [SUBCOMMAND]
FLAGS: --help Prints help information -V, --version Prints version information
OPTIONS:
-h, --host
SUBCOMMANDS: help Prints this message or the help of the given subcommand(s) publish Publish data to an exchange ```
``` $ rabbiteer publish --help rabbiteer-publish Publish data to an exchange
USAGE:
rabbiteer publish [OPTIONS] --exchange
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-c, --content-type
From stdin. Provide the content-type as arg.
echo "{\"panda\":true}" | ./rabbiteer -l admin -p admin -v prod publish -e jsonin -c application/json
From a file. Content-type is inferred if possible.
$ rabbiteer -l admin -p admin -v prod publish -e jsonin -H "batch: true" -f ./foo.json