/scully

Command line tool for working with zeromq sockets through jzmq

Primary LanguageScala

Scully

Scully is a simple command line tool for reading from and writing to zeromq sockets, similar to zmqpp. It uses the Java bindings for zeromq.

Building

Running mvn package should create a fat jar under target/fat-scully.jar.

Examples

  1. Concatenate two files through a push/pull socket:

    java -jar fat-scully.jar 'tcp://*:4242' -t push < file1 < file2 &
    java -jar fat-scully.jar tcp://localhost:4242 -t pull > merged
    ^C