find and replace with sed
Replacing characters in a text file
$ cat sample.txt
Replacing delimiter in a text file
$ sed 's/,/|/g' sample.txt
Replacing characters in a text file
$ cat sample.txt
Replacing delimiter in a text file
$ sed 's/,/|/g' sample.txt