Ask a Question related to Linux / Unix Administration, Design and Development.

  1. #1

    Default sed help!

    I'm trying to edit multiple zone files @ once using sed, but when I run the
    below command to replace the numeric string that is on the same line as
    string "Serial" I get each digit in the numeric string being replaced by
    the 10 digit replacement string.

    sed /Serial/s/\[0-9]\/1234567890/g filename

    Any help would be appreciated...
    Thanks.
    Aaron.


    Bowser325 Guest

  2. #2

    Default Re: sed help!

    Bowser325 <mccallaREMOVE!@thepacketlounge.org> wrote:
    > I get each digit in the numeric string being replaced by
    > the 10 digit replacement string.
    >
    > sed /Serial/s/\[0-9]\/1234567890/g filename
    Try

    sed -e '/Serial/s/[0-9]\{1,\}/12345/g' filename

    Yours,
    Laurenz Albe
    Laurenz Albe Guest

  3. #3

    Default Re: sed help!

    Thanks a lot. Any chance of getting a brief explanation of the {1,\}?
    Thanks.
    Aaron.

    "Laurenz Albe" <albe@culturallNOSPAM.com> wrote in message
    news:cg4l85$mh2$1@at-vie-newsmaster01.nextra.at...
    > Bowser325 <mccallaREMOVE!@thepacketlounge.org> wrote:
    > > I get each digit in the numeric string being replaced
    by
    > > the 10 digit replacement string.
    > >
    > > sed /Serial/s/\[0-9]\/1234567890/g filename
    >
    > Try
    >
    > sed -e '/Serial/s/[0-9]\{1,\}/12345/g' filename
    >
    > Yours,
    > Laurenz Albe

    Bowser325 Guest

  4. #4

    Default Re: sed help!

    On Fri, 20 Aug 2004 11:10:23 -0400, Bowser325 <mccallaREMOVE@thepacketlounge.org> wrote:
    > Thanks a lot. Any chance of getting a brief explanation of the {1,\}?
    Please don't top-post.
    Dave Hinz Guest

  5. #5

    Default Re: sed help!

    Bowser325 <mccallaREMOVE@thepacketlounge.org> wrote:
    >> sed -e '/Serial/s/[0-9]\{1,\}/12345/g' filename
    > Thanks a lot. Any chance of getting a brief explanation of the {1,\}?
    \{n,m\} means n to m repetitions of the preceeding pattern, in that
    case [0-9]. The missing m means that there is no upper limit.

    It is very rewarding to read documentation on regular expressions.
    They occur frequently in UNIX.

    Yours,
    Laurenz Albe
    Laurenz Albe Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139