tests/test-diffdir
author Bryan O'Sullivan <bos@serpentine.com>
Wed, 21 Sep 2005 11:44:08 -0700
changeset 1293 a6ffcebd3315
parent 981 4f81068ed8cd
child 1723 fde8fb2cbede
permissions -rwxr-xr-x
Enhance the file filtering capabilities. We now allow filtering through either pipes or pairs of temporary files. The latter appear to be mandatory for use on Windows.

#!/bin/sh

hg init
touch a
hg add a
hg ci -m "a" -d "0 0"

echo 123 > b
hg add b
hg diff | sed -e "s/\(+++ [a-zA-Z0-9_/.-]*\).*/\1/" \
              -e "s/\(--- [a-zA-Z0-9_/.-]*\).*/\1/"

hg diff -r tip | sed -e "s/\(+++ [a-zA-Z0-9_/.-]*\).*/\1/" \
                     -e "s/\(--- [a-zA-Z0-9_/.-]*\).*/\1/"