hgbook

annotate en/examples/mq.dodiff @ 258:1a55ba6ceca1

Make run-example a bit more user friendly.
author Bryan O'Sullivan <bos@serpentine.com>
date Wed Jun 06 08:11:08 2007 -0700 (2007-06-06)
parents dd657c4d3a47
children cac3ac4536e5
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
makoto@252 14 cat oldfile