hgbook

view en/examples/mq.dodiff @ 46:dd657c4d3a47

Rename mq.diff to mq.dodiff Emacs won't screw up the syntax highlighting.
author Bryan O'Sullivan <bos@serpentine.com>
date Sun Jul 23 23:38:18 2006 -0700 (2006-07-23)
parents en/examples/mq.diff@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