Find the answer to your Linux question:
Results 1 to 3 of 3
I am trying to add something before and after a line of text, I guess the best way to do this would to use sed/awk?? ---This would be the list ...
  1. #1
    Just Joined!
    Join Date
    Oct 2009
    Posts
    2

    Exclamation sed/awk to append text

    I am trying to add something before and after a line of text, I guess the best way to do this would to use sed/awk??


    ---This would be the list ----
    iptable.txt

    10.10.10.0/1
    10.10.10.0/2
    10.10.10.0/3
    10.10.10.0/3
    10.10.10.0/4
    10.10.10.0/5

    ---Then I want to automatically add "network" before and "ip-map" after----

    network 10.10.10.0/1 ip-map
    network 10.10.10.0/2 ip-map
    network 10.10.10.0/3 ip-map
    network 10.10.10.0/3 ip-map
    network 10.10.10.0/4 ip-map
    network 10.10.10.0/5 ip-map


    Any help would be much appreciated!!
    thanks.

  2. #2
    Linux Enthusiast gerard4143's Avatar
    Join Date
    Dec 2007
    Location
    Canada, Prince Edward Island
    Posts
    714
    Quote Originally Posted by chadfletch17 View Post
    I am trying to add something before and after a line of text, I guess the best way to do this would to use sed/awk??


    ---This would be the list ----
    iptable.txt

    10.10.10.0/1
    10.10.10.0/2
    10.10.10.0/3
    10.10.10.0/3
    10.10.10.0/4
    10.10.10.0/5

    ---Then I want to automatically add "network" before and "ip-map" after----

    network 10.10.10.0/1 ip-map
    network 10.10.10.0/2 ip-map
    network 10.10.10.0/3 ip-map
    network 10.10.10.0/3 ip-map
    network 10.10.10.0/4 ip-map
    network 10.10.10.0/5 ip-map


    Any help would be much appreciated!!
    thanks.
    try

    awk '{printf("network %s ip-map\n", $0)}' filename>result
    Make mine Arch Linux

  3. #3
    Just Joined!
    Join Date
    Oct 2009
    Posts
    2
    Thank you so much Gerard!!!

    it works perfect

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...