merging multiple lines into single line


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting merging multiple lines into single line
# 1  
Old 04-18-2012
Question merging multiple lines into single line

Hi,

1. Each message starts with date
2. There is blank line between each message
3. Each message does not contain same number of lines.

Any help in merging multiple lines in each message to a single line is much appreciated.

AIX: Korn Shell

Error log file looks like below.

Code:
2012-04-17-14.19.13.003447 ZRC=0x800D002B=-2146631637=SQLM_RC_EVFULL "monitor full of data"
          DIA8052C The Event Monitor "" has reached its file capacity. Delete
          the files in the target directory "" or move them to another
          directory.

2012-04-17-14.19.13.003798 ADM2017C  The Event Monitor "DB2DETAILDEADLOCK" has reached its file capacity. Delete the files in the target directory       "/db/db2cct2/cct2/db2cct2/NODE0000/SQL00001/db2event/db2detaildeadloc
k" or move them to another directory.

2012-04-17-14.19.13.642294

2012-04-17-13.59.56.765915

2012-04-17-11.14.12.503246 ADM5501I  DB2 is performing lock escalation. The affected application
          is named "db.8", and is associated with the workload name
          "SYSDEFAULTUSERWORKLOAD" and application ID
          "10.207.177.21.46719.120417111411"  at member "8". The total number
          of locks currently held is "403", and the target number of locks to
          hold is "201". The current statement being executed is "DELETE FROM
          CC.DOWNLOAD where DNLD IN (select DNLD_ID from
          CC.DOWNLOAD where file_id=3325) AND upd_ts >= current
          timestamp - 1 days".

2012-04-17-11.14.12.504032 ADM5502W  The escalation of "400" locks on table "CC.DOWNLOAD" to lock intent "X" was successful.

Thanks in advance

Moderator's Comments:
Mod Comment Welcome to the UNIX and Linux Forums. Please use code tags. Video tutorial on how to use them

Last edited by Scrutinizer; 04-18-2012 at 03:07 AM..
# 2  
Old 04-18-2012
Hi

Code:
perl -00ne 's/\n/ /g;print "$_\n";' file


Guru.
This User Gave Thanks to guruprasadpr For This Post:
# 3  
Old 04-18-2012
Thanks Guru. It works like a charm.
It would be great if you can explain this command.
# 4  
Old 04-18-2012
Hi

The option "00" reads the file in paragraph mode which means every time a blank line is encountered, the content read till then is considered as a record. Now, in the record read, we replace the newline(\n) with a space and hence the lines get joined.

Guru.
# 5  
Old 04-18-2012
Equivalent awk:
Code:
awk '{gsub(ORS,FS)}1' RS= infile

But this also removes white space, so perhaps this would be a bit more accurate:

Code:
awk '{gsub("\n",FS)}1' ORS="\n\n" RS= infile

or perl:

Code:
perl -00lpe 's/\n/ /g;' infile


Last edited by Scrutinizer; 04-18-2012 at 03:24 AM..
# 6  
Old 04-18-2012
Thanks Guru for your detailed explanation.

Thanks Scrutinizer for sharing the code using awk. It works as well.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Multiple lines to single line

I have code as below # create temporary table `temp4277`(key(waybill_no)) select waybill_no,concat_ws('',card_type,card_series_no) cardinfo from rfid_temp_ticket where waybill_no='4277' group by... (4 Replies)
Discussion started by: kaushik02018
4 Replies

2. UNIX for Beginners Questions & Answers

Merging multiple lines into single line based on one column

I Want to merge multiple lines based on the 1st field and keep into single record. SRC File: AAA_POC_DB.TAB1 AAA_POC_DB.TAB2 AAA_POC_DB.TAB3 AAA_POC_DB.TAB4 BBB_POC_DB.TAB1 BBB_POC_DB.TAB2 CCC_POC_DB.TAB6 OUTPUT ----------------- 'AAA_POC_DB','TAB1','TAB2','TAB3','TAB4'... (10 Replies)
Discussion started by: raju2016
10 Replies

3. Shell Programming and Scripting

Combine multiple lines into single line

Hi All , I have a file with below data # User@Host: xyz @ # Query_time: t1 Lock_time: t2 Rows_sent: n1 Rows_examined: n2 SET timestamp=1396852200; select count(1) from table; # Time: 140406 23:30:01 # User@Host: abc @ # Query_time: t1 Lock_time: t2 Rows_sent: n1 Rows_examined:... (6 Replies)
Discussion started by: rakesh_411
6 Replies

4. Shell Programming and Scripting

Multiple lines in a single column to be merged as a single line for a record

Hi, I have a requirement with, No~Dt~Notes 1~2011/08/1~"aaa bbb ccc ddd eee fff ggg hhh" Single column alone got splitted into multiple lines. I require the output as No~Dt~Notes 1~2011/08/1~"aaa<>bbb<>ccc<>ddd<>eee<>fff<>ggg<>hhh" mean to say those new lines to be... (1 Reply)
Discussion started by: Bhuvaneswari
1 Replies

5. Shell Programming and Scripting

Combine multiple lines in single line

This is related to one of my previous post but now with a slight difference: I need the "Updated:" to be in one line as well as the "Information:" on one line as well. These are in multiple lines right now as seen below. These can have 2 or more lines that needs to be in one line. System name:... (8 Replies)
Discussion started by: The One
8 Replies

6. Shell Programming and Scripting

Multiple lines into a single line on Ubuntu 10.04

Hi, I've some files with the following data and i need to convert the lines between the separator ---, into a single line. I've tried with the paste cmd but my main problem is that the number of lines between the separator is not fix, it can vary between 1-4 lines. Input --- 2010-02-22... (8 Replies)
Discussion started by: RickyC9999
8 Replies

7. Shell Programming and Scripting

Multiple lines into a single line

Hi, I've some files with the following data and i need to convert the lines between the separator ---, into a single line. I've tried with the paste cmd but my main problem is that the number of lines between the separator is not fix, it can very between 1-4 lines. Input --- 2010-02-22... (4 Replies)
Discussion started by: RickyC9999
4 Replies

8. Shell Programming and Scripting

Getting multiple messy lines into one single line

I have a file that contains the following: :@:176:@:4:@:name:@:file:@:this is a summary:@:description can be long but who knows can even have <br> tags.:@:how to:@:type:@:18544:@:550:@:400:END: :@:177:@:9:@:name:@:file:@:summary:@:this will containg... (18 Replies)
Discussion started by: sysrenan
18 Replies

9. Shell Programming and Scripting

replacing multiple lines with single line

Can any one give me the idea on replacing multiple blank lines with a single blank line? Please conside it for a file having more than 100 number of characters. Regards, Siba (3 Replies)
Discussion started by: siba.s.nayak
3 Replies

10. Shell Programming and Scripting

Splitting a single line into multiple lines

I have a case where, I need to look into a file. Go to each line of the file, find the length of the line, if the length of the line is more than 75 chars, I need to split the line into multiple lines of 75chars max. If the length of the line is less than 75, we need not do anything. So at the... (4 Replies)
Discussion started by: thanuman
4 Replies
Login or Register to Ask a Question