2004-04-27 08:12:43 +04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
sed '
|
|
|
|
s/<\/*table[^>]*>//g
|
|
|
|
s/<\/th[^>]*>//g
|
|
|
|
s/<\/td[^>]*>//g
|
2005-08-19 01:00:20 +04:00
|
|
|
s/"\([A-Z0-9_]*\)\.html">/&\1:/
|
2004-04-27 08:12:43 +04:00
|
|
|
s/All main.cf parameters/postconf(5): &/
|
2005-08-19 01:00:20 +04:00
|
|
|
/All Postfix manual pages/d
|
2004-04-27 08:12:43 +04:00
|
|
|
' "$@"
|
|
|
|
|
|
|
|
|
|
|
|
|