
February 12th, 2003, 10:30 AM
|
|
aka Stef
|
|
Join Date: Feb 2003
Posts: 18
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Hi,
if you just have to add the ".edi" extension to all the files, you could do just this:
for $files in *.gtp.*
do
mv $files $files.edi
done
OR
for $files in *.gtp.*
do
NEWSUFFIX=".edi"
mv $files $files$NEWSUFFIX
done
Hope this helps,
Stef.
|