view move-if-change @ 103446:08eb93040c4c

(Top): Language tweak. (Extended commands): Most people have arrow keys. (Emacs manual): Say how to follow info links. (File-name conventions): Change title a bit. Explain about source versus installed. Condense etc description. (Guidelines for newsgroup postings): Mention Savannah list page. (Newsgroup archives): Simplify. (Contacting the FSF): Add contact URL. (Emacs Lisp documentation): Printed version not always available. (Installing Texinfo documentation): Explain how by hand installation is not normally needed. Use add-to-list. Remove duplicate reference. (Informational files for Emacs): Move info on Help menu here from "File-name conventions". (Help installing Emacs): Tweak uref. (Obtaining the FAQ): Mention repository. (Origin of the term Emacs): Explain "ITS". (Changing load-path): Use add-to-list. (Automatic indentation): Clarify this is for Text mode. Don't mention Indented Text mode. (Finding Emacs on the Internet): The FSF does not seem to offer a deluxe distribution on CD anymore.
author Glenn Morris <rgm@gnu.org>
date Tue, 16 Jun 2009 07:35:11 +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