On Fri, 9 Jul 2004, joaquim abc wrote:

> Em Qui 08 Jul 2004 19:48, Reinaldo de A. Bonilho escreveu:
> > Boa Noite PessALL,
> >
> > Alguem tem um scritp que transforme arquivos e
> > diret�rios Maiusculos para Minusculos ???
> >
>
>
> Eu faria assim:
>
> find (diretorio) | while read JA
> do
>    test "$JA" = '.' && continue
>    ja=`echo $JA | tr "[:upper:]" "[:lower:]"`
>    mv "$JA" "$ja"
> done
>
> Acho que em condi�oes normais de temperatura e pressao, funcionaria.

Eu faria assim:

rename 'y/A-Z/a-z/' *





RENAME(1)              Perl Programmers Reference Guide              RENAME(1)

NAME
       rename - renames multiple files

SYNOPSIS
       rename [ -v ] [ -n ] [ -f ] perlexpr [ files ]

DESCRIPTION
       "rename" renames the filenames supplied according to the rule specified
       as the first argument.  The perlexpr argument is a Perl expression
       which is expected to modify the $_ string in Perl for at least some of
       the filenames specified.  If a given filename is not modified by the
       expression, it will not be renamed.  If no filenames are given on the
       command line, filenames will be read via standard input.

       For example, to rename all files matching "*.bak" to strip the exten-
       sion, you might say

               rename 's/\.bak$//' *.bak

       To translate uppercase names to lower, you'd use

               rename 'y/A-Z/a-z/' *


---------------------------------------------------------------------------
Esta lista � patrocinada pela Conectiva S.A. Visite http://www.conectiva.com.br

Arquivo: http://bazar2.conectiva.com.br/mailman/listinfo/linux-br
Regras de utiliza��o da lista: http://linux-br.conectiva.com.br
FAQ: http://www.zago.eti.br/menu.html

Responder a