Mercurial > emacs
view move-if-change @ 87526:4fefdc5cff24
* images/icons/emacs_16.png, images/icons/emacs_24.png
* images/icons/emacs_32.png, images/icons/emacs_48.png: Rename to
hicolor/16x16/apps/emacs.png hicolor/24x24/apps/emacs.png
hicolor/32x32/apps/emacs.png and hicolor/48x48/apps/emacs.png.
* images/icons/README (Author): Update for renaming.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Thu, 03 Jan 2008 07:33:47 +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