1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!--==================================================================
ocaml-gettext: a library to translate messages
Copyright (C) 2003-2008 Sylvain Le Gall <sylvain@le-gall.net>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version;
with the OCaml static compilation exception.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA
===================================================================-->
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"/usr/share/xml/schema/dtd/4.3/docbookx.dtd" [
<!-- Where to find the file ocaml-gettext-options.xml, depends on your installation -->
<!ENTITY ocaml_gettext_options_xml "../../doc/ocaml-gettext-options.xml">
]>
<refentry>
<refmeta>
<refentrytitle>PROGRAM</refentrytitle>
<manvolnum>1</manvolnum>
</refmeta>
<refnamediv>
<refname><command>program</command></refname>
<refpurpose>programs to say hello.</refpurpose>
</refnamediv>
<refsynopsisdiv>
<cmdsynopsis>
<command>program</command>
<group>
<arg choice="plain">--my-name <arg choice="req"><replaceable>name</replaceable></arg></arg>
<arg choice="plain">-help</arg>
<arg choice="plain">--help</arg>
</group>
<sbr/>
<!-- The ocaml-gettext standard options.-->
<xi:include
href="&ocaml_gettext_options_xml;"
xmlns:xi="http://www.w3.org/2001/XInclude"
xpointer="xpointer(id('ocaml-gettext-options-cmdsynopsis')/node())"/>
</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
<title>DESCRIPTION</title>
<para>
This manual page documents briefly the <command>program</command> command.
</para>
<variablelist>
<varlistentry>
<term>
<option>--my-name <parameter>name</parameter></option>
</term>
<listitem>
<para>
Your name. This could be any name, with which you should be greeted.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<option>-help</option>
</term>
<term>
<option>--help</option>
</term>
<listitem>
<para>
Display the help about the <command>program</command> command.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1>
<xi:include
href="&ocaml_gettext_options_xml;"
xmlns:xi="http://www.w3.org/2001/XInclude"
xpointer="xpointer(id('ocaml-gettext-options-description')/node())" />
</refsect1>
<refsect1>
<title>SEE ALSO</title>
<para>
<citerefentry>
<refentrytitle>ocaml-gettext</refentrytitle>
<manvolnum>5</manvolnum>
</citerefentry>
</para>
</refsect1>
</refentry>
|