[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: sed et substitution de majuscules



Jean-Michel OLTRA wrote:
En shellscript utiliser tr

for fichier in `find . -name *.htm?`; do
cp $fichier $fichier.old
cat $fichier.old | tr 'A-Z' 'a-z' > $fichier
done
--
# VACELET Manuel        manuel.vacelet(at)st(dot)com #
# Tel:  042 6089                  +33 (0)476 92 6089 #
# STMicroelectronics  - Central R&D DAIS             #
# 850, rue Jean Monet - 38926 CROLLES CEDEX - FRANCE #



Reply to: