view en/examples/mq.dodiff @ 110:75c076c7a374

More concepts stuff.
author Bryan O'Sullivan <bos@serpentine.com>
date Fri, 10 Nov 2006 15:09:49 -0800
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