view move-if-change @ 106771:5555a7ec947d

* startup.el (command-line-1): Use orig-argi to check for ignored X and NS options
author Jan D. <jan.h.d@swipnet.se>
date Sat, 09 Jan 2010 13:32:37 +0100
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