view move-if-change @ 5907:87e29d93e11b

Sort the symbols in general-slots.h using the Lisp provided. src/ChangeLog addition: 2015-05-08 Aidan Kehoe <kehoea@parhasard.net> * general-slots.h: Sort the symbols in this file using the Lisp provided.
author Aidan Kehoe <kehoea@parhasard.net>
date Fri, 08 May 2015 20:04:42 +0100
parents 376386a54a3c
children
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