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
It would be great if reformat would support tab characters in the format string to separate the placeholders into separate columns.
reformat
It tried to provide tabs with \t like following:
\t
taxonkit reformat -f "{k}\t{p}\t{c}\t{o}\t{f}\t{g}\t{s}\t{S}"
An intermediate solution is to mask the string in bash like $'{k}\t{p}\t{c}\t{o}\t{f}\t{g}\t{s}\t{S}'. But that's not obvious to most users.
$'{k}\t{p}\t{c}\t{o}\t{f}\t{g}\t{s}\t{S}'
The text was updated successfully, but these errors were encountered:
Thanks for your suggestion, it's supported now in v0.2.4-dev2 or later versions.
Please try it and any feedback is welcome.
Sorry, something went wrong.
#5
7cfa8fd
No branches or pull requests
It would be great if
reformat
would support tab characters in the format string to separate the placeholders into separate columns.It tried to provide tabs with
\t
like following:An intermediate solution is to mask the string in bash like
$'{k}\t{p}\t{c}\t{o}\t{f}\t{g}\t{s}\t{S}'
. But that's not obvious to most users.The text was updated successfully, but these errors were encountered: