Thanks feherke, Your explanation was easy to understand and will help me in the future!
I only have the occasion to use sed or awk once or twice a year and nearly
always use a cut/paste/modify of someone else's snippet; as was the case here.
I always save my scripts and any explanations I...
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.