Mercurial > emacs
view move-if-change @ 74415:ff55caf2e842
Merge from gnus--rel--5.10
Patches applied:
* gnus--rel--5.10 (patch 171)
- Update from CVS
2006-12-04 Jouni K. Sepp,Ad(Bnen <jks@iki.fi> (tiny change)
* lisp/gnus/mm-url.el (mm-url-predefined-programs): Call curl with correct
options.
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-540
author | Miles Bader <miles@gnu.org> |
---|---|
date | Mon, 04 Dec 2006 14:07:03 +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