Rob Bolin wrote: > Can anyone suggest a fix for escaping these characters out in a script? My > script follows. > > Thanks in advance > Rob > > #!/bin/bash > i=1 > for file in *.mp3 > do > mv ${file} ${i} mv "${file}" "${i}" should work. Brett