packages feed

pub-2.0.2: README.org

* Welcome!
  [[https://hackage.haskell.org/package/pub][https://img.shields.io/hackage/v/pub.svg?style=flat]]
  [[https://travis-ci.org/ixmatus/pub][https://travis-ci.org/ixmatus/pub.svg?branch=master]]

  =Pub= builds two utilities for piping to and from a redis pub/sub
  channel and stdout/stdin.

** Install
   =cabal install pub=

** Examples

*** Using pub
    #+BEGIN_SRC
    tail -F /some/log/file | grep "logfileProperty" | pub "logline"
    #+END_SRC

*** Using sub
    #+BEGIN_SRC
    sub "logline" | grep "somethingspecific"
    #+END_SRC