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
% cat version1.tsv col_1 col_2 col_3 123 001 2.33 234 002 4.55 123 003 6.77 % cat version2.tsv col_1 col_2 col_3 234 003 4.55 123 003 6.78
When I execute csvdiff -p 0,1 -s ‘\t’ -o rowmark version1.tsv version2.tsv,
csvdiff -p 0,1 -s ‘\t’ -o rowmark version1.tsv version2.tsv
Expectation
234 003 4.55 ADDED 123 003 6.78 MODIFIED 234 002 4.55 DELETED 123 001 2.33 DELETED
Actual
234 003 4.55,ADDED 123 003 6.78,MODIFIED 234 002 4.55,DELETED 123 001 2.33,DELETED
This makes it consistent and easier to parse the output for further processing.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When I execute
csvdiff -p 0,1 -s ‘\t’ -o rowmark version1.tsv version2.tsv
,Expectation
Actual
Why?
This makes it consistent and easier to parse the output for further processing.
The text was updated successfully, but these errors were encountered: