view devel/update-manpage-date @ 241:87df0aa99cc7

added myself to the copyright notice of route.c see the earlier changes about split_rcpts()
author markus schnalke <meillo@marmaro.de>
date Mon, 25 Oct 2010 15:41:48 -0300
parents 7b70bf4f1f42
children
line wrap: on
line source

#!/bin/sh
#
# update the date and version of man pages

if [ $# -lt 2 ] ; then
	echo "usage: update-manpage-header VERSION FILES..." >&2
	exit 1
fi


date=`date +%Y-%m-%d`

version="$1"
shift

for i do
	ed -s "$i" <<!
/^\.TH/s#[0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\}#$date#
s#[0-9]\{1,\}\.[0-9]\{1,\}\.[0-9]\{1,\}#$version#
p
w
q
!
done