Apply Multiple Substitutions To The Input
You can apply multiple substitutions to the input of a sed
command a couple ways.
One of those ways is to use the -e
flag multiple times to define substitutions that should be appended to the sed
script.
Another way is to define a single string as the sed
script and separate each substitution with a ;
(semicolon).
Each of these will run each substitution in the sed
script sequentially for each line in the input.
Last updated