Mercurial > emacs
view move-if-change @ 75093:5b3d80ea3c0e
(gdb-max-children): New customizable variable.
(gdb-speedbar-expand-node): Ask user for confirmation before expanding
large structures/arrays.
author | Nick Roberts <nickrob@snap.net.nz> |
---|---|
date | Fri, 05 Jan 2007 04:20:20 +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