![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Transposing column to row, joining with another file, then sorting columns | doobedoo | Shell Programming and Scripting | 2 | 10-02-2009 01:50 PM |
| Transposing a file | vikas_kesarwani | Shell Programming and Scripting | 14 | 09-02-2008 10:28 PM |
| More than transposing! | bulash | UNIX Desktop for Dummies Questions & Answers | 3 | 04-11-2008 05:20 PM |
| Another transposing issue | stevesmith | Shell Programming and Scripting | 14 | 09-16-2006 04:48 AM |
| file transposing | mskcc | Shell Programming and Scripting | 24 | 08-04-2005 11:23 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Transposing a file
Hi All,
I have a input file say FILEA. FILEA -------- empid1 sal1 location1 manager1 empid2 sal2 location2 manager2 empid3 sal3 location3 manager3 . . . the output file (FILEB) should look like: FILEB --------- empid1,sal1,location1,manager1 empid2,sal2,location2,manager2 empid3,sal3,location3,manager3 . . . Please help me in this regard Thanks in advance... |
|
||||
|
Code:
paste -d"," - - - - |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|