Mercurial > emacs
view move-if-change @ 56421:0ef3adf2dcd7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-455
Bash the dashes
2004-07-14 K,Ba(Broly L,Bu(Brentey <lorentey@elte.hu>
* src/keyboard.c (echo_dash): Do nothing if there already is a dash
at the end of the echo string.
author | Miles Bader <miles@gnu.org> |
---|---|
date | Wed, 14 Jul 2004 22:42:44 +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