A voir également:
- Regexp en bash
- Bingo bash free - Télécharger - Divers Jeux
- Retour à la ligne bash ✓ - Forum Shell
- Bash écrire dans un fichier - Forum Shell
- Bash addition ✓ - Forum Shell
- [Bash]Impossible de faire une simple addition - Forum Shell
2 réponses
jisisv
Messages postés
3645
Date d'inscription
dimanche 18 mars 2001
Statut
Modérateur
Dernière intervention
15 janvier 2017
934
12 nov. 2005 à 05:07
12 nov. 2005 à 05:07
Inspire toi de ceci
tr est un utilitaire standard sous Unix
johand@horus:~/tmp$ file="Un fichu nom style Windows" johand@horus:~/tmp$ touch "$file" johand@horus:~/tmp$ ls -l "$file" -rw-r--r-- 1 johand johand 0 2005-11-12 05:05 Un fichu nom style Windows johand@horus:~/tmp$ mv "$file" $(echo "$file" |tr ' ' '.') johand@horus:~/tmp$ ls -l Un.fichu.nom.style.Windows -rw-r--r-- 1 johand johand 0 2005-11-12 05:05 Un.fichu.nom.style.Windows
tr est un utilitaire standard sous Unix