Mercurial > emacs
view move-if-change @ 64148:a77d510ff94d
(Isearch Scroll): Add example of using the `isearch-scroll' property.
(Slow Isearch): Reference anchor for `baud-rate' instead of entire
`Display Custom' node.
(Regexp Replace): Put text that requires Emacs Lisp knowledge last
and de-emphasize it.
(Other Repeating Search): `occur' currently can not correctly
handle multiline matches. Correct, clarify and update description
of `flush-lines' and `keep-lines'.
author | Luc Teirlinck <teirllm@auburn.edu> |
---|---|
date | Thu, 07 Jul 2005 23:09:00 +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