How do I edit a file in a single sed command? Currently, I have to manually stream the edited content into a new file and then rename the new file to the original file name.
I tried sed -i, but my Solaris system said that -i is an illegal option. Is there a different way?
The
-ioption streams the edited content into a new file and then renames it behind the scenes, anyway.Example:
while on macOS you need: