make multiple line containing a pattern into single line


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting make multiple line containing a pattern into single line
# 8  
Old 08-07-2008
awk:

Code:
awk '{
	a[$2]=sprintf("%s %s",a[$2],$0)
}
END{
for(i in a)
 print a[i]
}' file

perl:

Code:
open(FH,"<file");
while(<FH>){
	@arr=split(" ",$_);
	$_=~tr/\n//d;
	$hash{$arr[1]}=sprintf("%s %s",$hash{$arr[1]},$_);
}
close(FH);
for $key(keys %hash){
print $hash{$key},"\n";
}

# 9  
Old 08-07-2008
$ cat file
00:03:6e:4e:4f:5c
00:09:7b:4e:4c:6d
00:04:55:5a:8d:ec

$ cat file | tr '\n' ' '
00:03:6e:4e:4f:5c 00:09:7b:4e:4c:6d 00:04:55:5a:8d:ec $

is this wat you needed?
# 10  
Old 08-07-2008
Quote:
Originally Posted by Sara-sh
Thanks so much for your response however, I am getting error when running the command, any chance you can take a look? Thanks again.

>awk 'END { print _ }
> !/:/ && x++ { print _; _ = "" }
> { _ = _ ? _ FS $0 : $0 }
> ' file.mac
awk: syntax error near line 2
awk: bailing out near line 2
Did you try to use nawk or /usr/xpg4/bin/awk as suggested?
# 11  
Old 08-07-2008
Thanks so much for all your help, I appreciate it ...
Sara
# 12  
Old 12-04-2008
Multiline onto a single line using awk?

I have a H U G E file with over 1million entries in it.
Looks something like this:

USER0001|DEVICE001|VAR1
USER0001|DEVICE001|VAR2
USER0001|DEVICE001|VAR3
USER0001|DEVICE001|VAR4
USER0001|DEVICE001|VAR5
USER0001|DEVICE001|VAR6
USER0001|DEVICE002|VAR1
USER0001|DEVICE002|VAR2
USER0001|DEVICE002|VAR3
USER0001|DEVICE002|VAR4
USER0001|DEVICE002|VAR5
USER0002|DEVICE001|VAR1
USER0002|DEVICE001|VAR2
USER0002|DEVICE001|VAR3
USER0002|DEVICE001|VAR4
USER0002|DEVICE001|VAR5
USER0002|DEVICE002|VAR1
USER0002|DEVICE002|VAR2
USER0002|DEVICE002|VAR3
USER0002|DEVICE002|VAR4
USER0002|DEVICE002|VAR5
USER0003|DEVICE003|VAR1
USER0003|DEVICE003|VAR2
USER0003|DEVICE003|VAR3
USER0003|DEVICE003|VAR4
USER0003|DEVICE003|VAR5
USER0003|DEVICE003|VAR6
USER0003|DEVICE003|VAR1
USER0003|DEVICE003|VAR2
USER0003|DEVICE003|VAR6


I would like a way to output only the uniq veriables onto a single line like so:

USER0001|DEVICE001|VAR1|VAR2|VAR3|VAR4|VAR5|VAR6
USER0001|DEVICE002|VAR1|VAR2|VAR3|VAR4|VAR5
USER0002|DEVICE001|VAR1|VAR2|VAR3|VAR4|VAR5
USER0002|DEVICE002|VAR1|VAR2|VAR3|VAR4|VAR5
USER0003|DEVICE003|VAR1|VAR2|VAR3|VAR4|VAR5|VAR6
USER0003|DEVICE003|VAR1|VAR2|VAR6


Is this doable with awk or do I need to use perl?
# 13  
Old 12-04-2008
Please don't hijack threads - start a new thread for new unrelated questions.
Forum's rules can be found here.
Yes, it is possible with either awk or perl.
# 14  
Old 12-04-2008
ok, borrowing from the previous suggestion on this thread:
Code:
nawk 'BEGIN {FS="|"}END{for(r in _)print r FS _[r]}{idx=$1 FS $2;_[idx]=_[idx]?_[idx] FS $3:$3}' myFile

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

Group Multiple Lines on SINGLE line matching pattern

Hi Guys, I am trying to format my csv file. When I spool the file using sqlplus the single row output is wrapped on three lines. Somehow I managed to format that file and finally i am trying to make the multiple line on single line. The below command is working fine but I need to pass the... (3 Replies)
Discussion started by: RJSKR28
3 Replies

3. Shell Programming and Scripting

How to print previous line of multiple pattern matched line?

Hello, I have below format log file, Comparing csv_converted_files/2201/9747.1012H67126.5077292103609547345.csv and csv_converted_files/22019/97447.1012H67126.5077292103609547345.csv Comparing csv_converted_files/2559/9447.1012H67126.5077292103609547345.csv and... (6 Replies)
Discussion started by: arvindshukla81
6 Replies

4. Shell Programming and Scripting

Multiple pattern match and print the output in a single line

I need to match two patterns in a log file and need to get the next line of the one of the pattern (out of two patterns) that is matched, finally need to print these three values in a single line. Sample Log: 2013/06/11 14:29:04 <0999> (725102) Processing batch 02_1231324 2013/06/11... (4 Replies)
Discussion started by: rpm120
4 Replies

5. Shell Programming and Scripting

Splitting Single line into multiple line

Hi All, I am reading a line from a file and writing it to other file. Whenever I got a particular line then I want that line to be splited into 4 line and written it to new file. e.g My line is U_ABC connector3 pin24E connector4 pin25E connector5 pin26E connector6 pin27E connector7... (2 Replies)
Discussion started by: diehard
2 Replies

6. Shell Programming and Scripting

sed command to grep multiple pattern present in single line and delete that line

here is what i want to achieve.. i have a file with below contents cat fileName blah blah blah . .DROP this REJECT that . --sport 7800 -j REJECT --reject-with icmp-port-unreachable --dport 7800 -j REJECT --reject-with icmp-port-unreachable . . . more blah blah blah --dport 3306... (14 Replies)
Discussion started by: vivek d r
14 Replies

7. Shell Programming and Scripting

convert single line output to multiple line

Hi all, I have a single line output like below echo $ips 10.26.208.28 10.26.208.26 10.26.208.27 want to convert above single line output as below format. Pls advice how to do ? 10.26.208.28 10.26.208.26 10.26.208.27 Regards Kannan (6 Replies)
Discussion started by: kamauv234
6 Replies

8. 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

9. Shell Programming and Scripting

Try to make a single line to syslog.

Hi again: Following the thread: https://www.unix.com/shell-programming-scripting/147755-format-lines-file.html I couldn't solve my problem, so I ask you again gurus: I have this code: nohup /usr/sbin/auditstream | /usr/sbin/auditselect -m -e "event== S_ENVIRON_WRITE || event==... (2 Replies)
Discussion started by: iga3725
2 Replies

10. Shell Programming and Scripting

single line input to multiple line output with sed

hey gents, I'm working on something that will use snmpwalk to query the devices on my network and retreive the device name, device IP, device model and device serial. I'm using Nmap for the enumeration and sed to clean up the results for use by snmpwalk. Once i get all the data organized I'm... (8 Replies)
Discussion started by: mitch
8 Replies
Login or Register to Ask a Question