Profile: Dieter Vrancken (jackrabbit)
2 comments | |
0 xtras |
Latest comments
# by jackrabbit on 10/02/07 at 17:51:24
Why not use sed instead of perl? Being a stream editor, it can do less harm than the general-purpose Perl.
Something like sed -e 's/orrect/correct/g; s/tpyos/typos/g' would solve elictricocean's problem.
Something similar would work in Perl as well, of course: perl -pe 's/bo/co/g; s/tpyo/typo/g' .
Something like sed -e 's/orrect/correct/g; s/tpyos/typos/g' would solve elictricocean's problem.
Something similar would work in Perl as well, of course: perl -pe 's/bo/co/g; s/tpyo/typo/g' .
# by jackrabbit on 10/02/07 at 17:53:28