Mercurial > hgbook
view en/examples/mq.dodiff.diff.out @ 288:cac3ac4536e5
Better wording, again per Jim Blandy.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Fri, 18 Jan 2008 12:01:46 -0800 |
parents | bdd271cf1ae1 |
children | 7be02466421b |
line wrap: on
line source
$ \textbf{echo 'this is my first line' > oldfile} $ \textbf{echo 'my first line is here' > newfile} $ \textbf{diff -u oldfile newfile > tiny.patch} $ \textbf{cat tiny.patch} @@ -1 +1 @@ -this is my first line +my first line is here $ \textbf{patch < tiny.patch} patching file oldfile $ \textbf{cat oldfile} my first line is here