hgbook
annotate en/examples/mq.dodiff @ 155:914babdc99c8
run-example: better error if bogus section name found.
Fix all such bogus names in sources.
Fix all such bogus names in sources.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Mon Mar 12 23:10:32 2007 -0700 (2007-03-12) |
parents | 5cee64874312 |
children | f2061ece8ed9 |
rev | line source |
---|---|
bos@46 | 1 #!/bin/bash |
bos@46 | 2 |
bos@19 | 3 #$ name: diff |
bos@19 | 4 |
bos@19 | 5 echo 'this is my first line' > oldfile |
bos@19 | 6 echo 'my first line is here' > newfile |
bos@19 | 7 |
bos@19 | 8 diff -u oldfile newfile > tiny.patch |
bos@19 | 9 |
bos@19 | 10 cat tiny.patch |
bos@19 | 11 |
bos@19 | 12 patch < tiny.patch |
bos@19 | 13 |
bos@19 | 14 cat newfile |