I'm trying this awk command awk "{print NR, $0}" file1.csv
, but it's adding the line number followed by a space and not a comma.
I tried other commands with the same results
awk "{print NR "," $0}" file1.csv
And I have an error wherever I use a single quote.
I'm using Gawk on Windows. I'm I missing something?
Thank you