view move-if-change @ 67260:f5d06dd5ca9b

(Fcompleting_read): If Vminibuffer_completing_file_name is non-nil, use the new keymaps Vminibuffer_local_filename_completion_map and Vminibuffer_local_must_match_filename_map keymaps. (keys_of_minibuf): Bind SPC in the new file-name completion keymaps.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 02 Dec 2005 13:55:54 +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