view move-if-change @ 29735:ab56f683df46
(set_internal): If variable is frame-local,
store the new value immediately into the frame parameter alist.
author |
Gerd Moellmann <gerd@gnu.org> |
date |
Mon, 19 Jun 2000 12:12:35 +0000 (2000-06-19) |
parents |
354e0c45cedf |
children |
14a97ab281d5 |
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