view move-if-change @ 28510:6fb7a3864791

2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp> * viper-util.el (viper-put-on-search-overlay): New subroutine. (viper-flash-search-pattern): No operation when using Emacs doesn't support face. Use `viper-put-on-search-overlay'.
author Michael Kifer <kifer@cs.stonybrook.edu>
date Fri, 07 Apr 2000 16:10:04 +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