view move-if-change @ 26042:1eb2f529058f

(find-dired-find-program): Added this variable. (find-dired): Use find-dired-find-program instead of "find".
author Peter Breton <pbreton@attbi.com>
date Sat, 16 Oct 1999 03:20:11 +0000
parents 354e0c45cedf
children 14a97ab281d5
line wrap: on
line source

#!/bin/sh
if
test -r $2
then
if
cmp $1 $2 > /dev/null
then
echo $2 is unchanged
rm -f $1
else
mv -f $1 $2
fi
else
mv -f $1 $2
fi