view move-if-change @ 67498:30baecf371f9

(display_completion_list_1): Call `minibuffer_completion_contents' instead of using `nil' as second arg of `Fdisplay_completion_list'. (keys_of_minibuf): Unbind SPC in Vminibuffer_local_filename_completion_map (see also related change on 2005-12-06).
author Juri Linkov <juri@jurta.org>
date Sun, 11 Dec 2005 09:50:53 +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