Try to keep sed commands simple as much as possible.
Otherwise you’ll get confused of what you’d written reading it later.
#!/bin/bash
sed "s/'/ /g" myfile.txt
Try to keep sed commands simple as much as possible.
Otherwise you’ll get confused of what you’d written reading it later.
#!/bin/bash
sed "s/'/ /g" myfile.txt