How do I change the extensions on a slew of files

James Long james_mapson at umpquanet.com
Fri Sep 12 17:11:54 PDT 2003


On Wed, Sep 03, 2003 at 08:28:19PM -0500, Larry Rosenman wrote:
> 
> 
> from an sh type shell
> for i in *.inc
> do
> z=`echo $i | sed -e "s/inc/htm/g"`
> mv ${i} ${z}
> done
> 
> (not tested, but should work.)
> 
> LER

What does it do with a file named

include.inc

z=`echo $i | sed -e "s/inc$/htm/g"`

is better, no?


More information about the freebsd-questions mailing list