Script bash ajouter des infos entre 2 lignes
Fermé
xunil2003
Messages postés
766
Date d'inscription
mercredi 17 novembre 2004
Statut
Membre
Dernière intervention
29 septembre 2024
-
Modifié par xunil2003 le 9/05/2012 à 23:25
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 - 10 mai 2012 à 08:31
zipe31 Messages postés 36402 Date d'inscription dimanche 7 novembre 2010 Statut Contributeur Dernière intervention 27 janvier 2021 - 10 mai 2012 à 08:31
A voir également:
- Script bash ajouter des infos entre 2 lignes
- Script vidéo youtube - Guide
- Ajouter signature word - Guide
- Ajouter un compte gmail - Guide
- 2 ecran pc - Guide
- Ajouter liste déroulante excel - Guide
1 réponse
zipe31
Messages postés
36402
Date d'inscription
dimanche 7 novembre 2010
Statut
Contributeur
Dernière intervention
27 janvier 2021
6 420
10 mai 2012 à 08:31
10 mai 2012 à 08:31
Salut,
Avec "sed" :
Avec "sed" :
$ cat plop # # Shorewall version 4 - Rules File # # For information on the settings in this file, type "man shorewall-rules" # # The manpage is also online at # http://www.shorewall.net/manpages/shorewall-rules.html # ####################################################################################### #ACTION SOURCE DEST PROTO DEST SOURCE ORIGINAL RATE USER/ MARK CONNLIMIT TIME HEADERS # PORT PORT(S) DEST LIMIT GROUP #SECTION ESTABLISHED #SECTION RELATED INCLUDE rules.drakx #LAST LINE -- DO NOT REMOVE $ sed -i.bak '/INCLUDE rules.drakx/ a\ # Freebox\ ACCEPT net:212.27.38.253 fw udp -\ ACCEPT fw net udp 554 -\ ACCEPT fw net udp 32000:34000 -\ ACCEPT net:192.168.0.2 fw all - ' plop $ cat plop # # Shorewall version 4 - Rules File # # For information on the settings in this file, type "man shorewall-rules" # # The manpage is also online at # http://www.shorewall.net/manpages/shorewall-rules.html # ####################################################################################### #ACTION SOURCE DEST PROTO DEST SOURCE ORIGINAL RATE USER/ MARK CONNLIMIT TIME HEADERS # PORT PORT(S) DEST LIMIT GROUP #SECTION ESTABLISHED #SECTION RELATED INCLUDE rules.drakx # Freebox ACCEPT net:212.27.38.253 fw udp - ACCEPT fw net udp 554 - ACCEPT fw net udp 32000:34000 - ACCEPT net:192.168.0.2 fw all - #LAST LINE -- DO NOT REMOVE $ ls plop plop.bak $