Let's look at an example that uses the substitute
command. Suppose someone quickly wrote the following script to change
pig to cow and
cow to horse:
s/pig/cow/
s/cow/horse/
The first command would change pig to
cow as expected. However, when the second command
changed cow to horse on the
same line, it also changed the cow that had been a
pig. So, where the input file contained pigs and
cows, the output file has only horses!
This mistake is simply a problem of the order of the commands in the
script. Reversing the order of the commands -- changing
cow into horse before changing
pig into cow -- does the
trick.
Another way to deal with this effect is to use a pattern you know
won't be in the document except when you put it
there, as a temporary placeholder. Either way, you know what the
"document" looks like after each
step in the program.
s/pig/cXXXoXXXw/
s/cow/horse/
s/cXXXoXXXw/cow/