Found this thread among others and I agree it contains the most complete answers so I add mine too:
1) sed and ed are so useful...by hand!!!
Look at this code from @Johnny:
sed -i -e 's/abc/XYZ/g' /tmp/file.txt
2) when my restriction is to use it by a shell script then, no variable can be used inside in place of abc or XYZ! This seems to agree with what I understand at least. So, I can't use:
x='abc'
y='XYZ'
sed -i -e 's/$x/$y/g' /tmp/file.txt
#or,
sed -i -e "s/$x/$y/g" /tmp/file.txt
but, what can we do? As, @Johnny said use a 'while read...' but, unfortunately that's not the end of the story. The following worked well with me:
#edit user's virtual domain
result=
#if nullglob is set then, unset it temporarily
is_nullglob=$( shopt -s | egrep -i '*nullglob' )
if [[ is_nullglob ]]; then
shopt -u nullglob
fi
while IFS= read -r line; do
line="${line//'<servername>'/$server}"
line="${line//'<serveralias>'/$alias}"
line="${line//'<user>'/$user}"
line="${line//'<group>'/$group}"
result="$result""$line"'\n'
done < $tmp
echo -e $result > $tmp
#if nullglob was set then, re-enable it
if [[ is_nullglob ]]; then
shopt -s nullglob
fi
#move user's virtual domain to Apache 2 domain directory
......
3) As one can see if nullglob is set then, it behaves strangely when there is a string containing a * as in
<VirtualHost *:80>
ServerName www.example.com
which becomes
<VirtualHost ServerName www.example.com
there is no ending angle bracket and Apache2 can't even load!
4) This kind of parsing should be slower than one-hit search and replace but, as you already have seen, there are 4 variables for 4 different search patterns working out of one only parse cycle!
The most suitable solution I can think of with the given assumptions of the problem.