Mercurial > emacs
view move-if-change @ 69129:23ad987a0092
(Newsgroup archives): Update URLs of GNU mail archives.
(Reporting bugs): Suggest using `M-x report-emacs-bug'.
Add xref to `(emacs)Reporting Bugs'.
(Getting a printed manual): Add URL to other formats of the manual.
(Common requests): Fix menu.
(Highlighting a region): Remove ref to `Turning on syntax highlighting'.
(Horizontal scrolling): Mention `truncate-partial-width-windows'.
(Inserting text at the beginning of each line): Add pxref to
`Changing the included text prefix'.
(Forcing the cursor to remain in the same column): Mention `track-eol'
and `set-goal-column'. Add pxref to `(emacs)Moving Point'.
(Replacing text across multiple files): Add keybinding `Q' for
`dired-do-query-replace'.
author | Juri Linkov <juri@jurta.org> |
---|---|
date | Thu, 23 Feb 2006 22:17:49 +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