The content of your html files can be lowercased easily with the 'sed' 
command. I don't remember the exactly format, see manual page.
for each file
cat file | sed parameters_i_dont_remember > file

For renaming the files, i don't know any command, but a shell script of 
few lines can do it with help of sed too.
Some like this:

files=`ls directory`
for old_name in $files; do
   new_name=`echo $old_name | sed parameters_i_dont_remember`
   mv $old_name $new_name
done

i'm not sure, but the parameter of sed is seemed to:
sed /u/ABCDEF...Z/abcdf...Z/

----- Mensaje original -----
De: "Dave A. Peat II" <[EMAIL PROTECTED]>
Fecha: Mi�rcoles, Agosto 2, 2000 5:20 pm
Asunto: [expert] Scripting- Uppercase to lowercase

> Hello,
> I am moving a website from NT/IIS to UNIX.  Can someone tell me of 
> an easy way, possibly a script of some kind, to do two things:
> 1.  Change all file names (some are uppercase and some are 
> lowercase) to ALL lowercase.
> 2.  Change all tags within htm files () that is, the path and file 
> name , to lowerecase.  For example,  to 
> Thanks in advance...
> Dave
> 
> 

 ___________________________________________________________________ 
Consigue tu e-mail gratuito TERRA.ES
 Haz click en http://www.terra.es/correo/

Reply via email to