view move-if-change @ 50042:5e493709a8ef
(dired-at-point): Check whether the user can create a directory before asking
about creating it.
author |
Juanma Barranquero <lekktu@gmail.com> |
date |
Thu, 06 Mar 2003 20:30:05 +0000 (2003-03-06) |
parents |
354e0c45cedf |
children |
14a97ab281d5 |
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