view move-if-change @ 53257:869dfa7b9022

(fringe-query-style): Suggest `?' in minibuffer prompt (instead of <SPACE>) to get the list of possible fringe modes. (<SPACE> only works if both `partial-completion-mode' and `completion-auto-help' are nil.)
author Luc Teirlinck <teirllm@auburn.edu>
date Tue, 23 Dec 2003 23:41:03 +0000
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