Greg Freemyer wrote: > All, > > Anyone know a tool for rename a bunch of files at one whack in the > cygwin environment? > > ie. I want to strip the abc prefix off of a bunch of abc* files. for i in abc*; do mv -i "$i" "${i#abc}"; done --Joe