In dos I could type in "ren *.php3 *.php" and rename all the extentions of a glob of files. In linux, "mv *.php3 *.php" does not work the same. Anyway to do this? I thought about for i in *.php3 ; do mv $i ... But I don't know how to delete a character from $i. I can append with $i.php and the like, but that would give me 'index.php3.php'.. Thanks, Cory
