![]() |
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 |
| How to cut a file name from back side | Prat007 | Shell Programming and Scripting | 4 | 07-28-2008 03:57 AM |
| How to print two sql query outputs side by side in excel | prasee | Shell Programming and Scripting | 6 | 09-08-2007 02:20 AM |
| checking missing files in side a folder | Nayanajith | UNIX for Dummies Questions & Answers | 4 | 06-26-2006 06:05 AM |
| Server side scripting | paladyn_2002 | Shell Programming and Scripting | 1 | 04-20-2004 12:04 PM |
| Having a Unix system installed side to side with Windows? | Pcslider | UNIX for Dummies Questions & Answers | 14 | 01-29-2002 06:21 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
How to Merge Two .xls files side by side into a single .xls
Hi all,
please help me out in below requirement. I have two .xls files say abc.xls and bbc.xls , i want to merge these two files into a single file ..say xyz.xls side by side Ex: abc.xls bbc.xls Eno Ename Eno Ename 101 hello 201 delhi 102 hero 202 Hyd 103 india 203 bombay My o/p file should be like this xyz.xls Eno Ename Eno Ename 101 hello 201 delhi 102 hero 202 Hyd 103 india 203 bombay between these two one empty column should be there to distinguish.. please help me.. how do we do in unix.. |
|
||||
|
Yes. As era mentioned you can try something like below:
$paste abc.xls bbc.xls > xyz.xls output ----- Eno Ename Eno Ename 101 hello 201 delhi 102 hero 202 Hyd 103 india 203 bombay |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|