Comment executer un script pour plusieurs arg
Fermé
Max
-
21 mai 2008 à 14:56
papavers Messages postés 24 Date d'inscription mardi 6 mai 2008 Statut Membre Dernière intervention 10 mai 2012 - 21 mai 2008 à 15:18
papavers Messages postés 24 Date d'inscription mardi 6 mai 2008 Statut Membre Dernière intervention 10 mai 2012 - 21 mai 2008 à 15:18
A voir également:
- Comment executer un script pour plusieurs arg
- Script vidéo youtube - Guide
- Ghost script - Télécharger - Polices de caractères
- Script bat - Guide
- Microsoft activation script - Accueil - Windows
- Executeur de script - Télécharger - Édition & Programmation
1 réponse
papavers
Messages postés
24
Date d'inscription
mardi 6 mai 2008
Statut
Membre
Dernière intervention
10 mai 2012
1
21 mai 2008 à 15:18
21 mai 2008 à 15:18
Salut Max,
Tu peux utiliser la boucle for et le parametre "$@" dans ton script. "$@" représente les paramètres fichier1.txt fichier2.txt ...
for file in $@
do
.
.
.
done
/Chiffrer.bash fichier1.txt fichier2.txt ...
Tu peux utiliser la boucle for et le parametre "$@" dans ton script. "$@" représente les paramètres fichier1.txt fichier2.txt ...
for file in $@
do
.
.
.
done
/Chiffrer.bash fichier1.txt fichier2.txt ...