I have a file of strings that are comma separated. I'm trying to replace the commas with a new line. I've tried:
sed 's/,/ /g' file
but it is not working. What am I missing?
Use tr instead:
tr
tr , ' ' < file
2.1m questions
2.1m answers
60 comments
57.0k users