One Column To Two Columns


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting One Column To Two Columns
# 8  
Old 12-30-2012
Quote:
Originally Posted by bronofski
Don Cragun

Thanks for a very comprehensive reply but as I'm able to verify the file meets the stated requirements before reformatting I don't have to cater for all the exception conditions.
OK. If you've pre-verified the input file, you can strip my suggestion down to:
Code:
#!/bin/ksh
awk '/[^[:digit:]]/ { h[++hc] = $0; next}
{       o[hc,++oc[hc]] = $0}
END {   printf("%-3s%s\n", h[1], h[2])
        for(i = 1; i <= oc[1]; i++) printf("%s %s\n", o[1, i], o[2, i])
}' Input

and get the same output.
This User Gave Thanks to Don Cragun For This Post:
# 9  
Old 12-30-2012
Code:
pr -t -s' ' -2 -l 7 input


Last edited by binlib; 12-31-2012 at 08:10 PM.. Reason: corrected typo "-n 2" to "-2"
# 10  
Old 12-31-2012
Code:
awk '/[a-zA-Z]/{i=0}
{i++;A[i]=A[i]?A[i]"\t"$0:$0}
END{for(j=1;j<=i;j++){print A[j]}}' file

This User Gave Thanks to pamu For This Post:
# 11  
Old 12-31-2012
Code:
awk '/[^0-9]/{f=NR} f>1{print A[NR-f+1],$0; next} {A[NR]=$0}' file

This User Gave Thanks to Scrutinizer For This Post:
# 12  
Old 12-31-2012
Quote:
Originally Posted by bronofski
Many thanks for the very quick replies.

On balance I'm inclined to go with fuad's single-liner largely because I know how to delete
blank lines :-)
You can just add
Code:
sed 's/ /\t/g'

to the end to replace the space to tab or you can edit the original code to be like this:

Code:
cat test | tr '\n' '\t' | awk ' { for (i=1; i<=NF/2; i++) { print $i, "\t", $(i+(NF/2)), "\n" } }'

# 13  
Old 12-31-2012
I see people give you the codes but I think it will be more benefit to you if you're doing it yourself. So, instead of give you the code, I would rather show you one of many ways on how to do it. You can split the file into 2 files, column_a and column_b, then merge them back to a single file with two columns. You can do that first by "grep" for where column b starts with the "-n" option to show line number. Then with the combination of using "head" and "tail" with a "-number" based on your "grep" result (you cannot use that exact number, why?), you can split the file in to two files: column_a and column_b. You can then use the "paste" command to merger the two files in to one with 2 columns, separated by tab.

You can also add "pre" check stuffs to check the input file is correct such as the line where column b start is right in the middle of the file.

Have fun writing your codes :-)
# 14  
Old 12-31-2012
Toiday

You're quite right about the need to understand the options available rather than just using code snippets. Meanwhile I'm still at the cut-and-paste stage of my scripting learning curve so thanks again to all those who replied to my original post.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk to Sum columns when other column has duplicates and append one column value to another with Care

Hi Experts, Please bear with me, i need help I am learning AWk and stuck up in one issue. First point : I want to sum up column value for column 7, 9, 11,13 and column15 if rows in column 5 are duplicates.No action to be taken for rows where value in column 5 is unique. Second point : For... (1 Reply)
Discussion started by: as7951
1 Replies

2. Shell Programming and Scripting

Combine columns from many files but keep them aligned in columns-shorter left column issue

Hello everyone, I searched the forum looking for answers to this but I could not pinpoint exactly what I need as I keep having trouble. I have many files each having two columns and hundreds of rows. first column is a string (can have many words) and the second column is a number.The files are... (5 Replies)
Discussion started by: isildur1234
5 Replies

3. Shell Programming and Scripting

Several columns to two column

Dear All, I have file : input.txt HANDVEL 2201181 1000 180 19 1540 173 1581 316 1652 509 1707 653 1767 816 1834 951 1882 1100 1984 1225 2050 1331 2109 1732 ... (4 Replies)
Discussion started by: attila
4 Replies

4. Shell Programming and Scripting

Splitting the data in a column into several columns

Hi, I have the following input file 32895901-d17f-414c-ac93-3e7e0f5ec240 AND @GDF_INPUT 73b129e1-1fa9-4c0d-b95b-4682e5389612 AUS @GDF_INPUT 40f82e88-d1ff-4ce2-9b8e-d827ddb39447 BEL @GDF_INPUT 36e9c3f1-042a-43a4-a80e-4a3bc2513d01 BGR @GDF_INPUT I want to split column 3 into two columns:... (1 Reply)
Discussion started by: ramky79
1 Replies

5. Shell Programming and Scripting

one column in different columns

I have a File with these format: A1 A2 A3 A4 B1 B2 B3 B4 . . . And I wont these format: A1 A2 A3 A4 B1 B2 B3 B4 .. .. .. .. .. ... How can I do that??? thanks (1 Reply)
Discussion started by: manudbc
1 Replies

6. Shell Programming and Scripting

Separating data from one column into two columns

Hello, I have a file that contains 64,235 columns and over 1000 rows and looks similar to this: ID dad mom 1 2 3 4 5.... 64232 1234 5678 6789 AA BB CC DD EE....ZZ 1342 5786 6897 BB CC DD EE FF....AA 1423 5867 6978 CC DD EE FF GG....BB I need to leave the first three columns in... (4 Replies)
Discussion started by: doobedoo
4 Replies

7. Shell Programming and Scripting

split one column into multiple columns

hey, i have the following data: 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 (7 Replies)
Discussion started by: zaneded
7 Replies

8. UNIX for Dummies Questions & Answers

split one column into multiple columns

hey guys... Im looking to do the following: 1 2 3 4 5 6 7 8 9 Change to: 1 4 7 2 5 8 3 6 9 Did use | perl -lpe'$\=$.%3?$":"\n"' , but it doesnt give me the matrix i want. (3 Replies)
Discussion started by: zaneded
3 Replies

9. Shell Programming and Scripting

How to check Null values in a file column by column if columns are Not NULLs

Hi All, I have a table with 10 columns. Some columns(2nd,4th,5th,7th,8th and 10th) are Not Null columns. I'll get a tab-delimited file and want to check col by col and generate seperate error code for each col eg:102 if 2nd col value is NULL and 104 if 4th col value is NULL so on... I am a... (7 Replies)
Discussion started by: Mandab
7 Replies

10. UNIX for Dummies Questions & Answers

single column to multiple columns

Hello, I have a single column of data that I would like to cut/print (with awk or ...) into multiple columns at every empty row (or common character). Input: 5.99123 5.94693 7.21383 5.95202 0.907935 5.99149 6.08427 0.975774 6.077 Output: 5.99123 5.95202 6.08427 5.94693... (7 Replies)
Discussion started by: agibbs
7 Replies
Login or Register to Ask a Question