Scripts bash
Fermé
azari12
-
12 janv. 2011 à 10:14
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 - 12 janv. 2011 à 10:40
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 - 12 janv. 2011 à 10:40
A voir également:
- Scripts bash
- Bingo bash free - Télécharger - Divers Jeux
- Microsoft activation scripts - Accueil - Windows
- Retour à la ligne bash ✓ - Forum Shell
- Bash écrire dans un fichier - Forum Shell
- Bash addition ✓ - Forum Shell
1 réponse
zipe31
Messages postés
36402
Date d'inscription
dimanche 7 novembre 2010
Statut
Contributeur
Dernière intervention
27 janvier 2021
6 419
12 janv. 2011 à 10:40
12 janv. 2011 à 10:40
Salut,
Une solution avec "sed" :
;-))
Une solution avec "sed" :
$ cat file.conf chaine-AX.a.X.a.X.a.X chaineAX.a.X.a.X.a.X chaine-BX.b.X.b.X.b.X chaine-CX.a.X.a.X.a.X $ cat a.txt X.a.X.a.X.a.X $ cat b.txt X.b.X.b.X.b.X $ A=$(cat a.txt) $ B=$(cat b.txt) $ echo $A X.a.X.a.X.a.X $ echo $B X.b.X.b.X.b.X $ sed -i.bakA '/^chaine-B/i\ '"$A"' ' file.conf $ sed -i.bakB '/^chaine-C/i\ '"$B"' ' file.conf $ cat file.conf chaine-A X.a.X.a.X.a.X chaine A X.a.X.a.X.a.X X.a.X.a.X.a.X chaine-B X.b.X.b.X.b.X X.b.X.b.X.b.X chaine-C X.a.X.a.X.a.X $
;-))