![]() |
|
|
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 |
| join (pls help on join command) | summer_cherry | Shell Programming and Scripting | 1 | 12-31-2007 05:19 AM |
| Using Join Command | Supial | Shell Programming and Scripting | 4 | 08-09-2005 02:12 AM |
| join command | penfold | Shell Programming and Scripting | 22 | 02-22-2005 08:37 AM |
| Join command | unisam | UNIX for Dummies Questions & Answers | 4 | 07-28-2004 07:59 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Join command
Dear Experts, I have several (say 'm') text files, each with 'n' columns. I want to put them into a large single file with n*m columns. Code:
a 1 a 1 a 1 a 1 b 2 b 5 b 1 b 3 c 3 c 7 c 1 c 4 d 4 d 8 d 1 d 7 give the output Code:
a 1 1 1 1 b 2 5 1 3 c 3 7 1 4 d 4 8 1 7 before i have used the join comand to do this Code:
join file file1 | join - file2 | join - file3 however this time i have 300 files to join so was wondering if the was an easier way to do this then writing out all the files to the command line Kindest Reagrds M |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|