philthygeezer
Technical User
awk '{gsub(/,/," ");print}'
This will replace commas with spaces, but
awk '{gsub(/ /,",");print}'
Doesn't appear to do the reverse.
What do I do?
This will replace commas with spaces, but
awk '{gsub(/ /,",");print}'
Doesn't appear to do the reverse.
What do I do?