On Wed, Mar 01, 2000 at 11:37:01PM -0800, kmself@ix.netcom.com wrote: > On Wed, Mar 01, 2000 at 04:22:06PM -0500, Arcady Genkin wrote: > > Ethan Benson <[EMAIL PROTECTED]> writes: > > > > > damn, that might be it... do you happen to know of a way to lowercase > > > letters in bash or some other way? i don't really want to mv THIS.TTF > > > this.tff 215 times.... > > > > You can use mmv utility: > > > > mmv '*.TTF' #1.ttf > > C'mon, where's the sport in that? > > for file in *; do mv $file f( echo $file|tr '[:upper:]' '[:lower:]' ); done
can't believe i forgot about tr... /me slaps self this was indeed the problem MS's innovative filesystem naming convention was indeed screwing up xfs, renamed all the files (with the above little gem) and that took care of it. thanks! -- Ethan Benson