vote up 1 vote down star

Consider the following example :

$ls
base.txt base-modified.txt
$diff base.txt base-modified.txt > diff.txt
$rm base-modified.txt
$

I want the base-modified.txt from base.txt and diff.txt... Can anyone suggest a way ?

flag

2 Answers

vote up 2 vote down check

You can use patch.

cp base.txt base-modified.txt
patch base-modified.txt diff.txt
link|flag
vote up 0 vote down

man patch

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.