Mercurial > emacs
view move-if-change @ 76193:80c354711780
Increase in 2 column case to make room for copyright notice.
(nopagenumbers): Call to turn off numbers in 1 page document.
(N?v?, Modifikace Dired bufferu): Swap sections to
balance column length in presence of copyright notice.
(copyrightnotice): Uncomment so that notice is displayed.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Tue, 27 Feb 2007 03:53: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