view move-if-change @ 91480:0158535f0ec8

Restore ps-print changes originally made on trunk to their original dates. (Dates were replaced with unicode merge dates in rev 1.12702.) See http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg00062.html
author Glenn Morris <rgm@gnu.org>
date Sat, 02 Feb 2008 21:37:41 +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