Need columns changed to rows


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need columns changed to rows
# 1  
Old 04-16-2015
Need columns changed to rows

I have some data in a file that looks like the following:

Code:
[/AMDLib]
reqs     : 447342
max      : 3.455
avg      : 0.020
[/PClaimsWSv3]
reqs     : 68936
max      : 24.078
avg      : 0.202
[/aca]
reqs     : 1093
max      : 3:52.713
avg      : 3.358
[/attributequery]
reqs     : 0
max      : 0.000
total    : 0.000


I would like to convert the data to look like the following:
Code:
[/AMDLib]          reqs     : 447342 max : 3.455        avg : 0.020
[/PClaimsWSv3] reqs     : 68936   max : 24.078       avg : 0.202
[/aca]               reqs     : 1093    max  : 3:52.713    avg : 3.358
[/attributequery]reqs     : 0         max  : 0.000        total : 0.000

The data format per line isn't that important. If there is long spaces or short spaces it doesn't matter as long as the data is on the same line.

Any help would be greatly appreciated.

Thanks,

-x96riley3

Last edited by vgersh99; 04-16-2015 at 11:43 AM.. Reason: code tags, please!
# 2  
Old 04-16-2015
Please use code tags for multiline segments.
Also, please share what you've already tried, with 81 posts you should know both of these points.

You might try something like: (untested, due to missing code tags)
Code:
while read line;do
	[ "\[/" = "${line:0:2}" ] && \
		printf "\n%s" "$line" || \
		printf "%s " "$line"
done<input_file

hth
# 3  
Old 04-16-2015
Code:
awk '/^[[][/]/ && FNR>1 {printf ORS} {printf("%s ", $0)}END {printf ORS}' myFile

# 4  
Old 04-16-2015
Or try:
Code:
awk '{$1=RS $1}NR>1' RS=\[ file

This User Gave Thanks to Scrutinizer For This Post:
# 5  
Old 04-16-2015
Code:
cat  filename  |  paste - - - -

This User Gave Thanks to garydeena For This Post:
# 6  
Old 04-18-2015
Yes if there is always a repetition of 4 lines that would certainly do too, you could leave out the cat-and-pipe:
Code:
paste - - - - < filename

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Columns to rows

HI UNIX Gurus, Not sure if this was already asked and an UNIX Guru has replied but I could not find what i wanted. I have linux environment and need help on this. I have several files like this. a,1 b,1 utc,10/12/2019 local,10/12/2018 name,xxxy deg,feh 10,12 20,8 30,50 32,64 46,65... (5 Replies)
Discussion started by: Roopensingh
5 Replies

2. Shell Programming and Scripting

Compare 2 csv files by columns, then extract certain columns of matcing rows

Hi all, I'm pretty much a newbie to UNIX. I would appreciate any help with UNIX coding on comparing two large csv files (greater than 10 GB in size), and output a file with matching columns. I want to compare file1 and file2 by 'id' and 'chain' columns, then extract exact matching rows'... (5 Replies)
Discussion started by: bkane3
5 Replies

3. Shell Programming and Scripting

Columns to rows

Hi, I have a big file, with thousands of rows, and I want to put every 7 rows in a line. Input file: str1, val2, val3 str2, val4, val5 str3, val22, val33 str4, val44, val55 str5, val6, val7 str6, val77, val88 str7, val99, val00 str1, som2, som3 str2, som4, som5 str3, som22, som33 ... (11 Replies)
Discussion started by: apenkov
11 Replies

4. Shell Programming and Scripting

Evaluate 2 columns, add sum IF two columns match on two rows

Hi all, I know this sounds suspiciously like a homework course; but, it is not. My goal is to take a file, and match my "ID" column to the "Date" column, if those conditions are true, add the total number of minutes worked and place it in this file, while not printing the original rows that I... (6 Replies)
Discussion started by: mtucker6784
6 Replies

5. Shell Programming and Scripting

Deleting all the fields(columns) from a .csv file if all rows in that columns are blanks

Hi Friends, I have come across some files where some of the columns don not have data. Key, Data1,Data2,Data3,Data4,Data5 A,5,6,,10,, A,3,4,,3,, B,1,,4,5,, B,2,,3,4,, If we see the above data on Data5 column do not have any row got filled. So remove only that column(Here Data5) and... (4 Replies)
Discussion started by: ks_reddy
4 Replies

6. Windows & DOS: Issues & Discussions

Columns to Rows

I want to create a script with gawk. I have the following file with 2 columns: A 1 A 2 A 3 B 1 B 2 B 3 C 1 C 2 D 1 D 2 D 3 D 4 and i want to convert to: (1 Reply)
Discussion started by: sameeribraimo
1 Replies

7. Shell Programming and Scripting

rows to columns

Hi Friends, I have a input file as below. how to convert rows to columns? Friday:recharge 3861140 Monday:recharge 4036228 Saturday:recharge 3996376 Sunday:recharge 3777749 Thursday:recharge 3858537 Tuesday:recharge 4047045 Wednesday:recharge 3954798 desinred output Sunday ... (3 Replies)
Discussion started by: suresh3566
3 Replies

8. Shell Programming and Scripting

Rows into columns?

I have a file thats space delimited that looks something like this: Joe Smith jsmith 43234 bill1;bill2;read;read2;schedule Andy Summers asummers 11232 bill1;read Beth McConnel bmconnel 43443 read;read2;schedule;bill Susan Fowler sfowler 09332 bill1;read;schedule I need to... (8 Replies)
Discussion started by: regexnub
8 Replies

9. Shell Programming and Scripting

Columns into rows

Hi, Let me know how to achieve the below requirment Input: ======== BEGIN DSSUBRECORD Name "DOC_NO_2" SqlType "-5" Precision "0" Scale "0" Nullable "0" END DSSUBRECORD BEGIN DSSUBRECORD Name "FROM_LOC" ... (1 Reply)
Discussion started by: Ramya_1104
1 Replies

10. Shell Programming and Scripting

Partial Column extraction/Process/Repasting changed Columns back to Source file

I have the following requirement. file1.txt (this could contain 5 million rows) ABC 1234 XYZ .... (3000 bytes) QRD 4612 GHT .... (3000 bytes) I need to create file2.txt 1234 4612 I have a EAI process to change file2.txt into file3.txt 4555 3743 Then I would have to use... (0 Replies)
Discussion started by: jostul
0 Replies
Login or Register to Ask a Question