view move-if-change @ 5215:956d54c39176

Reword the lispref documentation of buffer-display-count. 2010-05-28 Aidan Kehoe <kehoea@parhasard.net> * lispref/windows.texi (Buffers and Windows): Reword the documentation of `buffer-display-count'; `buffer-display-time's documentation was taken from a version of the GNU elisp manuwal with a compatible licence, `buffer-display-count' was not.
author Aidan Kehoe <kehoea@parhasard.net>
date Fri, 28 May 2010 13:52:16 +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