I saw someone do this to replace "upon" with "eat" in a text file called oro.
sed -i -e "s|upon|eat|" oro
Question: what is the purpose of -e option in the above command? I tried with and without the -e option and observed no differences.
I saw someone do this to replace "upon" with "eat" in a text file called oro.
sed -i -e "s|upon|eat|" oro
Question: what is the purpose of -e option in the above command? I tried with and without the -e option and observed no differences.