From ed613df3074cfeae80397cb61d142fe159b18e8c Mon Sep 17 00:00:00 2001 From: VG Date: Mon, 18 Apr 2016 23:17:15 +0200 Subject: First commit with readme --- readme.rst | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 readme.rst diff --git a/readme.rst b/readme.rst new file mode 100644 index 0000000..b9e788b --- /dev/null +++ b/readme.rst @@ -0,0 +1,21 @@ +Simple Text Queue +================= + +Why `tea` ??? + +- Because I love tea. + +History +======= + +Normally, if you have a worker writing to standard output every file +processed, you could write something like this:: + + find -iname '*.ext' > queue.txt + cat queue.txt | worker > done.txt + # here you can interrupt the service at any time (Ctrl-C/SIGTERM) + comm -23 queue.txt done.txt > remaining_queue.txt + +But if this is something you want to do again and again, it might be +convenient to write a little wrapper to do it for us. This is how teaqueue is +born. -- cgit v1.2.3