Here is another noob question. I have a file like this
John 30 Mike 0.0786268 Tyson 0.114889 Gabriel 0.176072 Fiona 0.101895
I need to shift every second row to a new column so it should look like this
John 30 Mike 0.0786268 Tyson 0.114889 Gabriel 0.176072 Fiona 0.101895
I just now that awk 'NR%2==0' will print every second row, could somebody suggest me how to shift them to a new column as above.  Any help is most appreciated. 
 
     
     
     
     
     
     
     
     
    