How can I set a row as column in Unix. Example:
name : Keshav
sub : C++
branch: cse
DOB :22/09/1990
company:NONE
name : Vijay
sub : Java
branch: cse
DOB :22/09/1985
company:NONE
I want output like this:
name sub branch DOB company
Keshav C++ cse 22/09/1990 NONE
Vijay Java cse 22/09/1990 NONE
perl
would be suitable. – wurtel Feb 27 '15 at 11:59