hgbook

annotate en/examples/results/mq.dodiff.diff.out @ 611:4432ad34b8e5

Check in example outputs with begin/end markers.
author Bryan O'Sullivan <bos@serpentine.com>
date Tue Mar 31 12:19:01 2009 -0700 (2009-03-31)
parents 0d5935744f87
children
rev   line source
bos@611 1 <!-- BEGIN mq.dodiff.diff -->
bos@564 2 <screen><prompt>$</prompt> <userinput>echo 'this is my original thought' &gt; oldfile</userinput>
bos@564 3 <prompt>$</prompt> <userinput>echo 'i have changed my mind' &gt; newfile</userinput>
bos@564 4 <prompt>$</prompt> <userinput>diff -u oldfile newfile &gt; tiny.patch</userinput>
bos@564 5 <prompt>$</prompt> <userinput>cat tiny.patch</userinput>
bos@144 6
bos@144 7
bos@144 8 @@ -1 +1 @@
bos@289 9 -this is my original thought
bos@289 10 +i have changed my mind
bos@564 11 <prompt>$</prompt> <userinput>patch &lt; tiny.patch</userinput>
bos@144 12 patching file oldfile
bos@564 13 <prompt>$</prompt> <userinput>cat oldfile</userinput>
bos@289 14 i have changed my mind
bos@564 15 </screen>
bos@611 16 <!-- END mq.dodiff.diff -->