Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> UNIX help needed for sed multi-line pattern space

UNIX help needed for sed multi-line pattern space

From: Martin, Alan <amartin_at_dlis.dla.mil>
Date: Thu, 15 Nov 2001 10:56:02 -0800
Message-ID: <F001.003C657C.20011115095524@fatcity.com>

If I have the following two-line sql statement in a file:

SELECT A,B,C FROM TABLE1
WHERE A=1; and want to create a single line, I could use the following sed script:

/[^;]$/{
 N
 s/\n/ /

}

which would produce:

SELECT A,B,C FROM TABLE1 WHERE A=1; What would my sed script look like if there were 2, 3, or even 4 continuation lines (unknown number of lines)? Note that the file is too large for vi.
Any good UNIX sites where I could post UNIX questions?

Thanx,

Alan Martin
Principal Consultant
Defense Logistics Information Service
amartin_at_dlis.dla.mil Received on Thu Nov 15 2001 - 12:56:02 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US