The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

SYNOPSIS

    add a message to queue fred, will be a simple queue,
    > qsimple -q fred "message to tweet"

    # take an item from a simple queue, output to STDOUT
    > qsimple -q fred --pop

    to get full help use
    > qsimple --help

    # add to queue from output of another process
    # '-' says read from STDIN
    some_script | qsimple -q barney -

DESCRIPTION

Add am item to a queue or process an item from a queue

config file is in ~/.abq

    queue:
        dsn: dbi:SQLite:/tmp/abq.sqlite
        user:
        password:

The queue entry holds information about the queue database that you want to connect to, this is obviously a perl DBI style connection