Mercurial > hg > Members > kono > nitros9-code
annotate docs/ccguide/buildman @ 2651:3f4ab32b4106
Adapted for ,U access, still more work to do
author | Boisy Pitre <boisy.pitre@nuance.com> |
---|---|
date | Mon, 02 Apr 2012 21:16:21 -0500 |
parents | 06e11c941478 |
children |
rev | line source |
---|---|
466 | 1 #!/bin/sh |
2 if [ $# -ne 1 ]; then | |
3 echo " Usage: buildman commandname" | |
4 echo " The result is in file r1.html" | |
5 exit 1 | |
6 fi | |
7 # <!ENTITY quot CDATA ""> | |
8 cat - > temp$$ <<wrapper | |
633 | 9 <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [ |
466 | 10 <!ENTITY refentrypage SYSTEM "$1.refentry"> |
11 ]> | |
12 <article> | |
13 &refentrypage; | |
14 </article> | |
15 wrapper | |
633 | 16 xmlto man temp$$ |
466 | 17 rm temp$$ |