From 39d342ff9df79db12122688b46989c80e77eeeca Mon Sep 17 00:00:00 2001 From: John Kerl Date: Sun, 3 May 2015 19:38:56 -0700 Subject: [PATCH] Allow --ofs SPACE --- c/cli/mlrcli.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/c/cli/mlrcli.c b/c/cli/mlrcli.c index dfda7956e..2e703bd9e 100644 --- a/c/cli/mlrcli.c +++ b/c/cli/mlrcli.c @@ -88,6 +88,8 @@ static void check_arg_count(char** argv, int argi, int argc, int n) { static char sep_from_arg(char* arg, char* argv0) { if (streq(arg, "TAB")) return '\t'; + if (streq(arg, "SPACE")) + return ' '; if (streq(arg, "NEWLINE")) return '\n'; if (streq(arg, "PIPE"))