Mercurial > hgbook
view en/examples/mq.dodiff @ 79:53427f786a0f
Make run-example time out if shell seems to get stuck.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Mon, 04 Sep 2006 14:31:17 -0700 |
parents | dd657c4d3a47 |
children | f2061ece8ed9 |
line wrap: on
line source
#!/bin/bash #$ name: diff echo 'this is my first line' > oldfile echo 'my first line is here' > newfile diff -u oldfile newfile > tiny.patch cat tiny.patch patch < tiny.patch cat newfile