![]() |
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 |
| merging of 2 files AWK, SHELL or something else | klut | Shell Programming and Scripting | 24 | 03-20-2009 09:45 AM |
| merging text files | code19 | Shell Programming and Scripting | 8 | 02-13-2008 08:13 AM |
| Merging two files | venommaker | UNIX for Dummies Questions & Answers | 4 | 01-10-2008 08:15 AM |
| merging INPUT and files | fiol73 | UNIX for Dummies Questions & Answers | 1 | 01-01-2007 05:14 PM |
| Merging fileds from 2 files | Mudshark | Shell Programming and Scripting | 8 | 04-19-2005 01:49 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
merging two files
Hi everyone,
I have two files which will be exactly same at first. After sometime there will be inserts in one file. My problem is how to reflect these changes in second file also. I found out that any compare and merge utility would do the job like, GNU " sdiff " command. But the problem with sdiff is, it is an interactive tool. we have to tell the command what to do each time it finds a difference in the files. (Either merge the change or discard it by specifying 'l' , 'r' ..options) do any one of you know how to automate this process.... or any other utility is available for doing this? (sort with -m option is not what i want ..because i dont want to lose the order in the files) Thanks in advance |
|
||||
|
hi perdarabo,
i am sorry to miss out an important point above.. My second file also can have inserts at the end but not in the middle...so if we do cp we will loose second file changes. (to put it differently, i am looking at two files which are same at first but after sometime both will change) |
|
||||
|
Code:
cp firstfile secondfile If you want to append data from firstfile, try Code:
firstfile >> secondfile |
|
||||
|
Quote:
Doesn't he want to take two data files that start with the same content, update both files with different sets of data and merge those 2 files into 1 file that contains all the data without replicating anything ?? (If you follow what I mean..) I'm not sure if there are any UNIX commands that could do it, but I would look at using Perl or similar... Last edited by PaulC; 06-29-2004 at 03:23 AM.. |
|
||||
|
Quote:
|
![]() |
| Bookmarks |
| Tags |
| unix commands |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|