mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-18 00:45:47 +00:00
Allow --ofs SPACE
This commit is contained in:
parent
397bbc16b2
commit
39d342ff9d
1 changed files with 2 additions and 0 deletions
|
|
@ -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"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue