The following sed example should solve your problem. sed allows multiple -e switches, which allows you to replace more than one thing at a time.
sed -e 's/dog/monkey/g' -e 's/orange/cow/g'
The following sed example should solve your problem. sed allows multiple -e switches, which allows you to replace more than one thing at a time.
sed -e 's/dog/monkey/g' -e 's/orange/cow/g'