Macos – Replace comma with newline in sed on MacOS

macossedunix

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/,/\n/g' file

but it is not working. What am I missing?

Best Answer

Use tr instead:

tr , '\n' < file