On Fri, 10 Dec 2004 17:17:53 -0500, Greg Beaver <[EMAIL PROTECTED]> wrote:
> yep, unless the function names happen to conflict with ones you've
> already written.

for file in *.php; do
cp $file $file.tmp
sed -e "s/bad/good/g" $file.tmp >$file
rm $file.tmp
done


-- 
Greg Donald
Zend Certified Engineer
http://gdconsultants.com/
http://destiney.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to