Mercurial > hg > Members > kono > nitros9-code
changeset 143:740f7868679c
More splitups.
author | roug |
---|---|
date | Sun, 07 Jul 2002 09:54:04 +0000 |
parents | 4cd37950c605 |
children | f4e798ea65b9 |
files | docs/nitros9guide/attr.refentry docs/nitros9guide/buildman |
diffstat | 2 files changed, 21 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/docs/nitros9guide/attr.refentry Sun Jul 07 09:54:04 2002 +0000 +++ b/docs/nitros9guide/attr.refentry Sun Jul 07 09:54:04 2002 +0000 @@ -16,7 +16,6 @@ <refsect1><title>Description</title> <para> - This command is used to examine or change the security permissions of a file. To enter the command, type "ATTR" followed by the pathlist for the file who's security permissions are to be changed,
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/docs/nitros9guide/buildman Sun Jul 07 09:54:04 2002 +0000 @@ -0,0 +1,21 @@ +#!/bin/sh +if [ $# -ne 1 ]; then + echo " Usage: buildman commandname" + echo " The result is in file r1.html" + exit 1 +fi +cat - > temp$$ <<wrapper +<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [ + <!ENTITY replstart "<"> + <!ENTITY replend ">"> + <!ENTITY repeatst "{"> + <!ENTITY repeaten "}"> + <!ENTITY quot CDATA ""> + <!ENTITY refentrypage SYSTEM "$1.refentry"> + ]> +<article> +&refentrypage; +</article> +wrapper +docbook2man temp$$ +rm temp$$