Mercurial > emacs
view move-if-change @ 57171:9bc06f7dfca8
(command-line) [windows-nt]: Try .emacs first, then
_emacs, but revert to .emacs if neither exists in home directory.
author | Jason Rumney <jasonr@gnu.org> |
---|---|
date | Mon, 20 Sep 2004 20:09:29 +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