|
Posted by Dan Lowe on 11/15/05 20:50
On Nov 15, 2005, at 8:39 AM, Greg Donald wrote:
> On Tue, 15 Nov 2005, Jim Moseby wrote:
>
>> It will be when you have to sort through 1,000,000 lines of code
>> in 400
>> files to change '<?' to '<?PHP'. Better to save the grief and do
>> it right
>> to start with, no?
>
> for file in *.php; do
> cp $file $file.tmp
> sed -e "s/<?$/<?php/g" $file.tmp >$file
> rm $file.tmp
> done
.... Wouldn't catch this case:
<? echo $foo ?>
-dan
--
Black holes are where God divided by zero. -Steven Wright
Navigation:
[Reply to this message]
|