I am using a awk command that changes text between quotes to lower case by using the field separator at the quotes.
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.