masqmail
annotate devel/update-manpage-date @ 239:31ee44f45787
refactored alias.c heavily
especially substituted the loop-based alias_expand()
with a recursive approach. Now alias_expand() wraps
alias_one() which recursively expands aliases.
In principle the ``data processing'' is the same but
now it's clearer structured and thus easier to understand
IMO.
The loop might have been faster but I don't care for
speed -- the most simple solution is the best. It's fast
enough, that is sufficient.
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Mon, 25 Oct 2010 15:35:28 -0300 |
parents | 0976977ccc52 |
children |
rev | line source |
---|---|
meillo@182 | 1 #!/bin/sh |
meillo@182 | 2 # |
meillo@182 | 3 # update the date and version of man pages |
meillo@182 | 4 |
meillo@182 | 5 if [ $# -lt 2 ] ; then |
meillo@182 | 6 echo "usage: update-manpage-header VERSION FILES..." >&2 |
meillo@182 | 7 exit 1 |
meillo@182 | 8 fi |
meillo@182 | 9 |
meillo@182 | 10 |
meillo@182 | 11 date=`date +%Y-%m-%d` |
meillo@182 | 12 |
meillo@182 | 13 version="$1" |
meillo@182 | 14 shift |
meillo@182 | 15 |
meillo@182 | 16 for i do |
meillo@182 | 17 ed -s "$i" <<! |
meillo@182 | 18 /^\.TH/s#[0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\}#$date# |
meillo@182 | 19 s#[0-9]\{1,\}\.[0-9]\{1,\}\.[0-9]\{1,\}#$version# |
meillo@182 | 20 p |
meillo@182 | 21 w |
meillo@182 | 22 q |
meillo@182 | 23 ! |
meillo@182 | 24 done |