Re: need to lcase/tolower/strlwr a directory hierarchy, is there an intrinsic util?

2008-05-17 Thread Lowell Gilbert
Steve Franks [EMAIL PROTECTED] writes:

 Just found strings(1), the util, thought there might be something like
 that for lcase/tolower/strlwr?  Would definitely pretty up my old
 photos directories from my win32 days...

Not clear on what you want here.  

Maybe something like 
  for fil in [A-Z]* ; do mv $fil `echo $fil |tr [A-Z] [a-z] ` ; done
[untested], perhaps?
-- 
Lowell Gilbert, embedded/networking software engineer, Boston area
http://be-well.ilk.org/~lowell/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


need to lcase/tolower/strlwr a directory hierarchy, is there an intrinsic util?

2008-05-14 Thread Steve Franks
Just found strings(1), the util, thought there might be something like
that for lcase/tolower/strlwr?  Would definitely pretty up my old
photos directories from my win32 days...

Steve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]