Split line in to 3 lines


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Split line in to 3 lines
# 15  
Old 11-24-2010
Scrutinizer,

Here is the part of the file (altered.log).

Code:
2010-11-15 00:31:46,660<REQUEST><VALIDATION-ERROR><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header><wsMessageHeader xmlns="http://integration.xyz.com/common/header/WSMessageHeader/v2"><trackingMessageHeader><applicationId>HJS</applicationId><applicationUserId>HJS</applicationUserId><consumerId>1001</consumerId><messageId>1289802711409</messageId><conversationId>1001</conversationId><timeToLive>123</timeToLive><messageDateTimeStamp>2010-11-15T00:31:51.409-06:00</messageDateTimeStamp></trackingMessageHeader><securityMessageHeader/></wsMessageHeader></soapenv:Header><soapenv:Body><managetypelist xmlns="http://integration.xyz.com/interfaces/managetypelist/v1/managetypelist.xsd"><userIdentityInfo><ownerId>7862615209</ownerId><ownerType>MDN</ownerType></userIdentityInfo><typelist><listName>BlockList</listName><contextName>BlockList</contextName></typelist><authentication><loginId>246581</loginId><realm>SITEMINDER</realm><roleList><roleInfo><role>AccountHolder</role></roleInfo></roleList></authentication></managetypelist></soapenv:Body></soapenv:Envelope></VALIDATION-ERROR></REQUEST>
<RESPONSE><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>Error.55</faultcode><faultstring>Input validation error</faultstring><faultactor>76S</faultactor><detail><ns1:errorDetailItem xmlns:ns1="http://integration.xyz.com/common/ErrorDetails.xsd"><ns1:providerError><ns1:providerErrorCode>Error.55</ns1:providerErrorCode><ns1:providerErrorText>http://services/TypeManagementService: cvc-particle 3.1: in element typelist of type typelistType, found &lt;/typelist>, but next item should be any of [deletetypelistInd, typelistInfo]</ns1:providerErrorText></ns1:providerError></ns1:errorDetailItem></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope></RESPONSE>

2010-11-15 06:17:22,550<REQUEST><VALIDATION-ERROR><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header><wsMessageHeader xmlns="http://integration.xyz.com/common/header/WSMessageHeader/v2"><trackingMessageHeader><applicationId>HJS</applicationId><applicationUserId>HJS</applicationUserId><consumerId>1001</consumerId><messageId>1289823443885</messageId><conversationId>1001</conversationId><timeToLive>123</timeToLive><messageDateTimeStamp>2010-11-15T06:17:23.885-06:00</messageDateTimeStamp></trackingMessageHeader><securityMessageHeader/></wsMessageHeader></soapenv:Header><soapenv:Body><managetypelist xmlns="http://integration.xyz.com/interfaces/managetypelist/v1/managetypelist.xsd"><userIdentityInfo><ownerId>85600</ownerId><ownerType>MDN</ownerType></userIdentityInfo><typelist><listName>BlockList</listName><contextName>BlockList</contextName></typelist><authentication><loginId>308192669</loginId><realm>SITEMINDER</realm><roleList><roleInfo><role>AccountHolder</role></roleInfo></roleList></authentication></managetypelist></soapenv:Body></soapenv:Envelope></VALIDATION-ERROR></REQUEST>
<RESPONSE><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>Error.55</faultcode><faultstring>Input validation error</faultstring><faultactor>76S</faultactor><detail><ns1:errorDetailItem xmlns:ns1="http://integration.xyz.com/common/ErrorDetails.xsd"><ns1:providerError><ns1:providerErrorCode>Error.55</ns1:providerErrorCode><ns1:providerErrorText>http://services/TypeManagementService: cvc-particle 3.1: in element typelist of type typelistType, found &lt;/typelist>, but next item should be any of [deletetypelistInd, typelistInfo]</ns1:providerErrorText></ns1:providerError></ns1:errorDetailItem></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope></RESPONSE>

# 16  
Old 11-24-2010
Then I get:
Code:
$ sed 's|<\([A-Z]*\)>.*</\1>|\n&|g' infile
2010-11-15 00:31:46,660
<REQUEST><VALIDATION-ERROR><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header><wsMessageHeader xmlns="http://integration.xyz.com/common/header/WSMessageHeader/v2"><trackingMessageHeader><applicationId>HJS</applicationId><applicationUserId>HJS</applicationUserId><consumerId>1001</consumerId><messageId>1289802711409</messageId><conversationId>1001</conversationId><timeToLive>123</timeToLive><messageDateTimeStamp>2010-11-15T00:31:51.409-06:00</messageDateTimeStamp></trackingMessageHeader><securityMessageHeader/></wsMessageHeader></soapenv:Header><soapenv:Body><managetypelist xmlns="http://integration.xyz.com/interfaces/managetypelist/v1/managetypelist.xsd"><userIdentityInfo><ownerId>7862615209</ownerId><ownerType>MDN</ownerType></userIdentityInfo><typelist><listName>BlockList</listName><contextName>BlockList</contextName></typelist><authentication><loginId>246581</loginId><realm>SITEMINDER</realm><roleList><roleInfo><role>AccountHolder</role></roleInfo></roleList></authentication></managetypelist></soapenv:Body></soapenv:Envelope></VALIDATION-ERROR></REQUEST>

<RESPONSE><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>Error.55</faultcode><faultstring>Input validation error</faultstring><faultactor>76S</faultactor><detail><ns1:errorDetailItem xmlns:ns1="http://integration.xyz.com/common/ErrorDetails.xsd"><ns1:providerError><ns1:providerErrorCode>Error.55</ns1:providerErrorCode><ns1:providerErrorText>http://services/TypeManagementService: cvc-particle 3.1: in element typelist of type typelistType, found &lt;/typelist>, but next item should be any of [deletetypelistInd, typelistInfo]</ns1:providerErrorText></ns1:providerError></ns1:errorDetailItem></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope></RESPONSE>

2010-11-15 06:17:22,550
<REQUEST><VALIDATION-ERROR><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header><wsMessageHeader xmlns="http://integration.xyz.com/common/header/WSMessageHeader/v2"><trackingMessageHeader><applicationId>HJS</applicationId><applicationUserId>HJS</applicationUserId><consumerId>1001</consumerId><messageId>1289823443885</messageId><conversationId>1001</conversationId><timeToLive>123</timeToLive><messageDateTimeStamp>2010-11-15T06:17:23.885-06:00</messageDateTimeStamp></trackingMessageHeader><securityMessageHeader/></wsMessageHeader></soapenv:Header><soapenv:Body><managetypelist xmlns="http://integration.xyz.com/interfaces/managetypelist/v1/managetypelist.xsd"><userIdentityInfo><ownerId>85600</ownerId><ownerType>MDN</ownerType></userIdentityInfo><typelist><listName>BlockList</listName><contextName>BlockList</contextName></typelist><authentication><loginId>308192669</loginId><realm>SITEMINDER</realm><roleList><roleInfo><role>AccountHolder</role></roleInfo></roleList></authentication></managetypelist></soapenv:Body></soapenv:Envelope></VALIDATION-ERROR></REQUEST>

<RESPONSE><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>Error.55</faultcode><faultstring>Input validation error</faultstring><faultactor>76S</faultactor><detail><ns1:errorDetailItem xmlns:ns1="http://integration.xyz.com/common/ErrorDetails.xsd"><ns1:providerError><ns1:providerErrorCode>Error.55</ns1:providerErrorCode><ns1:providerErrorText>http://services/TypeManagementService: cvc-particle 3.1: in element typelist of type typelistType, found &lt;/typelist>, but next item should be any of [deletetypelistInd, typelistInfo]</ns1:providerErrorText></ns1:providerError></ns1:errorDetailItem></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope></RESPONSE>

This is not what you are getting?
# 17  
Old 12-02-2010
Yes, that was the format i need to get .
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Get an output of lines in pattern 1st line then 10th line then 11th line then 20th line and so on.

Input file: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 (6 Replies)
Discussion started by: Sagar Singh
6 Replies

2. Shell Programming and Scripting

Search for a pattern in a file and split the line into two lines

Hi All, Greetings everyone !!! I have a file which has many lines, out of which one line is as below. I need to search for pattern "varchar(30) Select" and if exists, then split the line as below. I am trying to achieve this in ksh. Can anyone help me on this. (8 Replies)
Discussion started by: Pradhikshan
8 Replies

3. Shell Programming and Scripting

Split a line into multiple lines based on delimeters

Hi, I need help to split any lines that contain ; or , input.txtAc020 Not a good chemical process AC030 many has failed, 3 still maintained AC040 Putative; epithelial cells AC050 Predicted binding activity AC060 rodC Putative; upregulated in 48;h biofilm vs planktonic The output... (8 Replies)
Discussion started by: redse171
8 Replies

4. Shell Programming and Scripting

Need a program that read a file line by line and prints out lines 1, 2 & 3 after an empty line...

Hello, I need a program that read a file line by line and prints out lines 1, 2 & 3 after an empty line... An example of entries in the file would be: SRVXPAPI001 ERRO JUN24 07:28:34 1775 REASON= 0000, PROCID= #E506 #1065: TPCIPPR, INDEX= 003F ... (8 Replies)
Discussion started by: Ferocci
8 Replies

5. Shell Programming and Scripting

How do I split a single-line input into five lines?

Example input: John:Shepherd:770-767-4040:U.S.A:New York Mo Jo:Jo Jo: 666-666-6666:U.S.A:Townsville Expected Output: First Name: John Last Name: Shepherd Phone Number: 770-767-4040 Country: U.S.A State: New York First Name: Mo Jo Last Name: Jo Jo Phone Number: 666-666-6666... (10 Replies)
Discussion started by: Camrikron
10 Replies

6. Shell Programming and Scripting

[Perl] Split lines into array - variable line items - variable no of lines.

Hi, I have the following lines that I would like to see in an array for easy comparisons and printing: Example 1: field1,field2,field3,field4,field5 value1,value2,value3,value4,value5Example 2: field1,field3,field4,field2,field5,field6,field7... (7 Replies)
Discussion started by: ejdv
7 Replies

7. Shell Programming and Scripting

split single line into two line or three lines

Dear All, I want to split single line into two line or three lines wherever “|” separated values comes using Input line test,DEMTEMPUT20100404010012,,,,,,,,|0070086|0070087, output shoule be test,DEMTEMPUT20100404010012,,,,,,,,0070086, test,DEMTEMPUT20100404010012,,,,,,,,0070087, (14 Replies)
Discussion started by: arvindng
14 Replies

8. Shell Programming and Scripting

Split a line on positions before reading complete line

Hi, I want to split before reading the complete line as the line is very big and its throwing out of memory. can you suggest. when i say #cat $inputFile | while read eachLine and use the eachLine to split its throwing out of memory as the line size is more than 10000000 characters. Can you... (1 Reply)
Discussion started by: vijaykrc
1 Replies

9. UNIX for Dummies Questions & Answers

Split data into multiple lines

All, I have a requirement where I will need to split a line into multiple lines. Ex: Input: 2ABCDEFGH2POIYUY2ASDGGF2QWERTY Output: 2ABCDEFGH 2POIYUY 2ASDGGF 2QWERTY The data is of no fixed lenght. Only the lines have to start with 2. How can this be done. (5 Replies)
Discussion started by: kingofprussia
5 Replies

10. Shell Programming and Scripting

Split a huge line into multiple 120 characters lines with sed?

Hello , I'm trying to split a file which contains a single very long line. My aim is to split this single line each 120 characters. I tried with the sed command : `cat ${MYPATH}/${FILE}|sed -e :a -e 's/^.\{1,120\}$/&\n/;ta' >{MYPATH}/${DEST}` but when I wc -l the destination file it is... (2 Replies)
Discussion started by: jerome_1664
2 Replies
Login or Register to Ask a Question