From abf0ea26b0274e92e78b84f97d60a574654a6795 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Tue, 12 Jan 2016 23:20:22 +0100 Subject: [PATCH] support redirecting to - just noticed that possibility in the docs... --- src/main.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 1c6ba48..c02081e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -315,6 +315,12 @@ int main (int argc, char**argv) int exitval = 0; + //handle the defaults + if (input == "-") input = "/dev/stdin"; + if (output == "-") output = "/dev/stdout"; + if (err_output == "-") err_output = "/dev/stderr"; + + //do the redirections if (input.length() && !redirect_cin (input)) { progerr ("could not open input file"); exitval = 1;