We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d00270 commit 361b66fCopy full SHA for 361b66f
main.go
@@ -174,13 +174,13 @@ func run() int {
174
for i, f := range fields {
175
if _, exists := columns[int64(i+1)]; exists {
176
if printedFirstColumn {
177
- fmt.Fprintf(stdout, "\t")
+ fmt.Fprint(stdout, "\t")
178
}
179
printedFirstColumn = true
180
- fmt.Fprintf(stdout, f)
+ fmt.Fprint(stdout, f)
181
182
183
- fmt.Fprintf(stdout, "\n")
+ fmt.Fprint(stdout, "\n")
184
185
if err := scanner.Err(); err != nil {
186
fmt.Fprintf(stderr, "ERROR: failed to read input: %v\n", err)
0 commit comments