view move-if-change @ 68516:9141c59ac209

Minor clarifications. (Display): Rearrange menu. (Standard Faces): Mention query-replace face. (Faces): Simplify. (Font Lock): Simplify face customization info. (Highlight Changes): Node merged into Highlight Interactively. (Highlight Interactively): Much rewriting and cleanup. (Optional Mode Line): Narrowed line number not good for goto-line. Simplify face customization advice. (Text Display): Mention use of escape-glyph face. Move ctl-arrow and tab-width here. (Display Custom): Move no-redraw-on-reenter to end of node.
author Richard M. Stallman <rms@gnu.org>
date Tue, 31 Jan 2006 18:37:23 +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