Parsing strings

Discussion in 'Shell Script' started by pnat331, Sep 30, 2010.

  1. pnat331

    pnat331 New Member

    Joined:
    Sep 30, 2010
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
    I need help parsing this bit of text into the output shown below:

    Text:
    dump database abc123 to 'compress::0::/dbdumps/abc123_20100930_1251:00.dump1'
    stripe on 'compress::0::/dbdumps/abc123_20100930_1251:00.dump2'
    go
    dump database abc_def to 'compress::0::/dbdumps/abc_def_20100930_1251:00.dump1'
    go

    Here abc123 and abc_def are database names

    Dump files for database abc123 will be created in 2 stripes and will be saved as:
    dbdumps/abc123_20100930_1251:00.dump1
    dbdumps/abc123_20100930_1251:00.dump2

    The dump file for database abc_def will be saved as:
    abc123_20100930_1251:00.dump2'

    What I am trying to do is to create soft links as below
    abc123.dump1->abc123_20100930_1251:00.dump1
    abc123.dump2->abc123_20100930_1251:00.dump2
    abc_def.dump1->abc_def_20100930_1251:00.dump1

    In the output the first word is the database name (which may be alphanumeric and may also have underscores and hyphens). The dump[n] prefix is what exists on the dump file name and should be appended to the database name to create the soft link.

    Any suggestions on how this can be accomplished? I am using ksh.
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice