home *** CD-ROM | disk | FTP | other *** search
- From: kjh@pollux.usc.edu (Kenneth J. Hendrickson)
- Newsgroups: alt.sources
- Subject: Re: Neat utility to convert uppercase filenames
- Message-ID: <28682@usc>
- Date: 7 Dec 90 21:29:14 GMT
-
- The following Bourne shell script has always worked well for me:
-
- for file in *
- do
- mv -i $file `echo $file | tr A-Z a-z`
- done
-
- For Sys V, put square brackets around the tr strings.
-
- --
- favourite oxymorons: student athlete, military justice, mercy killing
- Ken Hendrickson N8DGN/6 kjh@usc.edu ...!uunet!usc!pollux!kjh
-