hgbook

view en/examples/mq.dodiff @ 69:e9dd634ab99e

hg_id is a one-liner. Pipe to head is superfluous
author Guy Brand <gb@isis.u-strasbg.fr>
date Tue Aug 08 20:41:37 2006 +0200 (2006-08-08)
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