Mercurial > hg > Members > kono > nitros9-code
annotate docs/nitros9guide/display.refentry @ 993:57b5e715a417
The make_hp_files.py is a script to extract help (.HP) files from refentries
in DocBook. Can be used for validation etc.
Look inside for how to use it.
author | roug |
---|---|
date | Sun, 23 Feb 2003 16:33:24 +0000 |
parents | c565a4700689 |
children | 4dae346c4969 |
rev | line source |
---|---|
136 | 1 <refentry id="display"> |
2 <refnamediv> | |
3 <refname>DISPLAY</refname> | |
4 <refpurpose>Display Converted Characters</refpurpose> | |
5 </refnamediv> | |
6 | |
7 <refsynopsisdiv> | |
8 <cmdsynopsis> | |
9 <command>DISPLAY</command> | |
10 <arg choice="plain"> | |
975
c565a4700689
The entitity replstart was replaced with <replaceable>
roug
parents:
136
diff
changeset
|
11 <replaceable>hex</replaceable> |
136 | 12 </arg> |
13 <arg choice="plain"> | |
975
c565a4700689
The entitity replstart was replaced with <replaceable>
roug
parents:
136
diff
changeset
|
14 &repeatst;<replaceable>hex</replaceable>&repeaten; |
136 | 15 </arg> |
16 </cmdsynopsis> | |
17 </refsynopsisdiv> | |
18 | |
19 <refsect1><title>Description</title> | |
20 <para> | |
21 Display reads one or more hexadecimal numbers given as parameters, | |
22 converts them to ASCII characters, and writes them to the standard | |
23 output. It is commonly used to send special characters (such as | |
24 cursor and screen control codes) to terminals and other I/O devices. | |
25 | |
26 </para> | |
27 </refsect1> | |
28 <refsect1><title>Examples</title> | |
29 <screen> | |
30 display 0C 1F 02 7F | |
31 | |
32 | |
33 display 15 >/p (sends "form feed" to printer) | |
34 | |
35 OS9: display 41 42 43 44 45 46 | |
36 ABCDEF | |
37 </screen> | |
38 </refsect1> | |
39 </refentry> | |
40 |