Mercurial > masqmail
view devel/list-versions @ 290:792e0201c1b3
mark -qo (without argument) obsolete
Its behavior (online detect and send over the available route)
is included in -q. In the -qo case no local mail would be sent,
but why would be not want to do so? We might use -qo (without
arg) for something more useful in the future.
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Wed, 08 Dec 2010 18:00:22 -0300 |
parents | 7b70bf4f1f42 |
children | a6404efa35bc |
line wrap: on
line source
#!/bin/sh # # list the version numbers in several important files # run this script before generating a release ( grep '^AC_INIT' /dev/null configure.* printf "Changelog:" sed -n '/^[0-9]\.[0-9]\{1,\}\.[0-9]\{1,\}/{p;q}' ChangeLog printf "NEWS:" sed -n '/^[0-9]\.[0-9]\{1,\}\.[0-9]\{1,\}/{p;q}' NEWS grep '^\.TH' /dev/null man/*.[0-9] ) | sed 's~\([^:]*\):.*\([0-9]\.[0-9]\{1,\}\.[0-9]\{1,\}\).*~\2 \1~'