mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-05 03:39:38 +00:00
16 lines
129 B
Text
16 lines
129 B
Text
![]() |
#!/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
|