annotate ja/examples/mq.dodiff.diff.out @ 779:69923723e7f9

more hook.tex
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Mon, 27 Apr 2009 17:31:54 +0900
parents b0db5adf11c1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
289
7be02466421b Oops, forgot to update the output
Bryan O'Sullivan <bos@serpentine.com>
parents: 253
diff changeset
1 $ \textbf{echo 'this is my original thought' > oldfile}
7be02466421b Oops, forgot to update the output
Bryan O'Sullivan <bos@serpentine.com>
parents: 253
diff changeset
2 $ \textbf{echo 'i have changed my mind' > newfile}
144
006bbad1f190 Add expected output files.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
3 $ \textbf{diff -u oldfile newfile > tiny.patch}
006bbad1f190 Add expected output files.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
4 $ \textbf{cat tiny.patch}
006bbad1f190 Add expected output files.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
5
006bbad1f190 Add expected output files.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
6
006bbad1f190 Add expected output files.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
7 @@ -1 +1 @@
289
7be02466421b Oops, forgot to update the output
Bryan O'Sullivan <bos@serpentine.com>
parents: 253
diff changeset
8 -this is my original thought
7be02466421b Oops, forgot to update the output
Bryan O'Sullivan <bos@serpentine.com>
parents: 253
diff changeset
9 +i have changed my mind
144
006bbad1f190 Add expected output files.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
10 $ \textbf{patch < tiny.patch}
006bbad1f190 Add expected output files.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff changeset
11 patching file oldfile
253
bdd271cf1ae1 Update expected output.
Bryan O'Sullivan <bos@serpentine.com>
parents: 144
diff changeset
12 $ \textbf{cat oldfile}
289
7be02466421b Oops, forgot to update the output
Bryan O'Sullivan <bos@serpentine.com>
parents: 253
diff changeset
13 i have changed my mind