hgbook

view en/examples/mq.dodiff @ 229:0a20b03559bf

Most stable output of bisect example seems to have changed?
author Bryan O'Sullivan <bos@serpentine.com>
date Sat May 26 12:07:03 2007 -0700 (2007-05-26)
parents 5cee64874312
children f2061ece8ed9
line source
1 #!/bin/bash
3 #$ name: diff
5 echo 'this is my first line' > oldfile
6 echo 'my first line is here' > newfile
8 diff -u oldfile newfile > tiny.patch
10 cat tiny.patch
12 patch < tiny.patch
14 cat newfile