-
Notifications
You must be signed in to change notification settings - Fork 217
New issue
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
--quote-all silently ignored #1026
Comments
I'm just patching my script like this in the meantime: λ echo 'test,foo' | mlr --c2t -N unsparsify | xargs -I{} echo '"{}"' | sed 's/\t/\",\"/g'
"test","foo" |
Another solution, is to have in you PC both version 5 & 6, and then use the 5 for this part of your workflow
|
Hi @dimitri-lenkov and sorry for the disruption! :( Let me look into this -- I'm using the Go CSV library now in Miller 6 where I don't have as many 'knobs' to turn as I used to. There may be a good way to handle this, though ... |
@dimitri-lenkov restored in #1084 |
The latest version of
mlr
broke a script of mine and was wondering if there is a new flag for this, or if I should be using a different tool for this use case (I need quoted CSV output).I've narrowed down my problem to this flag (I think):
Previous versions of
mlr
would output the following:And now that the
--quote-all
flag is ignored, I get this output instead:In the docs:
https://miller.readthedocs.io/en/latest/reference-main-flag-list/#legacy-flags
It states at the top of that section:
But it did break my script, just in a confusing way lol. My use-case is updating a configuration file that only accepts quoted CSV data.
Thanks for the project & any advice ✌️
The text was updated successfully, but these errors were encountered: