view en/examples/mq.dodiff @ 48:e8ab09bf5d7d

Force the \grafix macro to use the PDF image It would seem that the \includegraphics macro is moody and sometimes it prefers the png over the pdf. This should force it to always use the right file type.
author Josef "Jeff" Sipek <jeffpc@josefsipek.net>
date Mon, 24 Jul 2006 15:58:33 -0400
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