view move-if-change @ 99991:ec1ce2561f47

Mention -nw and -c. Fix the character for --help. Swap the order of -e and -n to follow the order displayed by --help.
author Dan Nicolaescu <dann@ics.uci.edu>
date Thu, 27 Nov 2008 16:56:33 +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