On Sat, 27 Oct 2001, David Gilden wrote: > cold:~/cgi$ perl -pie 's/;"\);/"\);/ ' * > Can't open perl script "s/;"\);/"\);/ ": No such file or directory
Try this perl -pi -e 's/;"\);/"\);/g' * Separate the -e. You might also want /g at the end of the substitution, so it doesn't quit on the first match. -- Brett http://www.chapelperilous.net/ ------------------------------------------------------------------------ The truth of a thing is the feel of it, not the think of it. -- Stanley Kubrick -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]