We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
zsv flatten
$ cat test.csv a,b 1,2 3,4 5,6 $ zsv flatten test.csv -o flatten.csv a,2,4,6 1,,, 3,,, 5,,, $ ls -l flatten.csv -rw-rw-r-- 1 azeem azeem 0 Nov 25 10:44 flatten.csv
With -o, the output is going to stdout, not to file. The file is being created but the data is not being written to it.
-o
stdout
The text was updated successfully, but these errors were encountered:
fix #303
b6a752b
ab33988
liquidaty
No branches or pull requests
With
-o
, the output is going tostdout
, not to file.The file is being created but the data is not being written to it.
The text was updated successfully, but these errors were encountered: