In csvtk v0.37.0, csvtk --show-row-number concat does not print the row number column:
$ printf "a,b\n1,2\n" | csvtk --show-row-number concat
a,b
1,2
By comparison, csvtk --show-row-number cut does print the row number column:
$ printf "a,b\n1,2\n" | csvtk --show-row-number cut --fields 1,2
row,a,b
1,1,2
$ csvtk version
csvtk v0.37.0
In csvtk v0.37.0,
csvtk --show-row-number concatdoes not print the row number column:By comparison,
csvtk --show-row-number cutdoes print the row number column: