I am using a awk command that changes text between quotes to lower case by using the field separator at the quotes.
Unfortunately this command also removes the quotes "" from the output.
How can I get awk to keep/replace the original quotes?
Thanks for the help
Code:
awk 'BEGIN { FS = "\"" } {print ($1)tolower($2)$3} ' test.txt > temp
Unfortunately this command also removes the quotes "" from the output.
How can I get awk to keep/replace the original quotes?
Thanks for the help