> comment en shell bash convertir tous les fichiers d'un repertoire en 
> majuscule...

rename est ton ami

[EMAIL PROTECTED]:~/tmp$ ls
liste1  liste1~  liste2  liste3  toto
[EMAIL PROTECTED]:~/tmp$ rename 'tr/[a-z]/[A-Z]/' l*
[EMAIL PROTECTED]:~/tmp$ ls
LISTE1  LISTE1~  LISTE2  LISTE3  toto

man rename.

Charles

Répondre à