combine


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting combine
# 1  
Old 09-19-2009
combine

Hi

I am having text file like this

001|ramu|hno221|><
sheshadripuram|delhi|560061><
002|krishna|hno225|><
newdelhimain|delhi|560061><

i want to combine every two lines as single...line...
i.e
001|ramu|hno221|sheshadripuram|delhi|560061

can u pls help me
# 2  
Old 09-19-2009
Code:
 
awk '{printf("%s",$0);getline;printf("%s\n",$0)}' infile

# 3  
Old 09-19-2009
sed solution:
Code:
sed -n 'N;s/><\n\(.*\)></\1/p' INPUT-FILE

# 4  
Old 09-19-2009
will this do??
Code:
 paste -d"|" - - < filename

Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Combine 2 files

How to cilnd desided output from file1 and file2 with awk. file1 1 2 7 8 9 14 15 16 21 22 23 28 29 30 file2 aa bb cc dd ee ff gg hh ii jj kk ll (3 Replies)
Discussion started by: theshashi
3 Replies

2. Programming

Combine 3 queries

can these 3 be combined into 1 query? createtablea1as selecta.tps_Res_nb, b.tkt_prod_cd, b.tkt_prod_typ_nm, b.prod_intrnl_ds, b.tkt_prod_typ_nm AS TKT_ENTL_NM, casewhen b.tkt_prod_nm isnotnullthen b.tkt_prod_nm when b.tkt_prod_nm isnulland b.prod_intrnl_ds isnotnullthen... (1 Reply)
Discussion started by: dwr80
1 Replies

3. Shell Programming and Scripting

combine two files...

Hi, i have two files. i want to combine records from these two files in below manner :- first line from first file(1st line) 2nd line from 2nd file(1st line) 3rd line from 1st file(2nd line) 4th line from 2nd file(2nd line) so on.... (1 Reply)
Discussion started by: deepakiniimt
1 Replies

4. Shell Programming and Scripting

Help me to combine two file

Hi, can anybody help me. I want to combine these two file into one horizontally. 1st File: ... 10:00 10:01 10:02 10:03 10:04 10:05 ... 2nd File: ... 0715 10:00 Caps: 50 0715 10:01 Caps: 65 0715 10:02 Caps: 75 0715 10:04 Caps: 50 0715 10:05 Caps: 87 (3 Replies)
Discussion started by: lurak
3 Replies

5. Shell Programming and Scripting

combine

Dear all i am having text file like xxx|yyy|1|2| zzz|rrr|3|4| www|xxx|>< 5|6|>< jjj|kkk|>< 8|9>< i want to join two lines which are having ' >< ' by taking only two lines at a stretch ...using awk command the result output should be xxx|yyy|1|2| zzz|rrr|3|4| www|xxx|5|6|... (2 Replies)
Discussion started by: suryanarayana
2 Replies

6. Shell Programming and Scripting

perl combine if

Hi Evereyone, %q = (); $q{"a"} = 0; $q{"b"} = 0; $q{"c"} = 0; if ($q{"a"} !=0 || $q{"b"} !=0 || $q{"c"} !=0) { print "non-zero" } if any simple way to do that? assume you have not only a, b, c inside %q, but a, b, c, d, e, ... ... Thanks (2 Replies)
Discussion started by: jimmy_y
2 Replies

7. Shell Programming and Scripting

Combine new files

Hi All , Any one help me to combine two files in shell scripting .Below is my requrement i have 2 files as follows filea newyork America Texas America london Engalad Fileb abc def xyz i have to combine this file as follows newyork America abc Texas ... (1 Reply)
Discussion started by: ajmalc
1 Replies

8. Post Here to Contact Site Administrators and Moderators

combine accounts

I have two accounts, one for gmail and one for all other Google applications. I would like to put the gmail account on the same account as the others. I like Google, and all the products offered. However, it has been very difficult and frustrating to find this forum, and to figure out how to... (2 Replies)
Discussion started by: chaimelle
2 Replies

9. UNIX for Dummies Questions & Answers

how to combine after comparison

hi all, i have file as below: N000150100B00|1 N000150100B00|3 E0P2C42100000|2 E0P2C42100000|3 N000150100B00|2 N000150100B00|4 E0P2C42100000|3 E0P2C42100000|3 E0P2C42100000|6 now i want to compare 1st field of all rows with all other row's first field and if they are same then i... (2 Replies)
Discussion started by: pranav.pandya
2 Replies
Login or Register to Ask a Question