Mercurial > emacs
view move-if-change @ 39384:bdd2e9a9bb71
(hexl-mode-map): Fix the change of 2001-08-23: use
make-keymap instead of copy-keymap, since copying the global
keymap messes up the menu bar.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 22 Sep 2001 17:47:47 +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