Issue
I'm looking for a Unix command that will allow me to search/replace in a file - I need to replace all commas in a certain file with spaces. I need to do this in a script and I'm looking to avoid parsing/reading the file line by line. Is there a simple unix command that will allow me to do this?
Solution
sed 's/,/ /g' filename >resultfile
Answered By - khachik Answer Checked By - Candace Johnson (WPSolving Volunteer)