Message posted by Laurent Cerveau <lcerveau@...>:
The a little bit non conventional way : Applescript
The computer geek, non user oriented but totally free and fast method in Terminal
ls -1 *.aiff | awk '{print "mv "$1" "$1}' | sed s/.aiff//2 | sh
To rename all .aiff to .aif
ls -1 *.aiff | awk '{print "mv "$1" "$1}' | sed s/.aiff/.aif/2 | sh
etc...Message
Re: I need an automated method of changing file names,
2006-08-30 by Laurent Cerveau