view move-if-change @ 4337:c32e4dca0296

#'special-form-p; don't error (thank you Jerry James); flesh out docstring. 2007-12-18 Aidan Kehoe <kehoea@parhasard.net> * symbols.c (Fspecial_form_p): Following commentary from Jerry James, don't error if not passed a subr. Flesh out the docstring; give details of what a subr is, what a special form is, and why one should probably not write special forms oneself.
author Aidan Kehoe <kehoea@parhasard.net>
date Tue, 18 Dec 2007 23:00:01 +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