From 3d5b3b8016e1bc932c386c46a4949e178d5985b9 Mon Sep 17 00:00:00 2001 From: Wolfgang Draxinger Date: Thu, 20 Oct 2022 12:28:09 +0200 Subject: Initial commit --- README | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README (limited to 'README') diff --git a/README b/README new file mode 100644 index 0000000..356ab49 --- /dev/null +++ b/README @@ -0,0 +1,18 @@ +# rsvr -- a in-memory file reservoir + +rsvr is a small helper utility that receives data from non-seekable +sources on `stdin` such as a pipe or a socket, placing it into a in-memory +file resorvoir (it also can read from regular, seekable files). When the +source is closed (or end-of-file is reached) the subsequent command is +executed. + +There are no options to set. Usage is as simple as + + rsvr + +With the source data being read from `stdin`. + +# Example + + # download a PDF from the web and show it using MuPDF + curl | rsvr mupdf /dev/stdin -- cgit v1.3.1