Mercurial > hg > Members > kono > nitros9-code
annotate docs/nitros9guide/ex.refentry @ 1053:b5ff125a1d60
Since this book was only typeset in fixed width, single-font, they used
capitalization and quotes (") to show what was commands, files and just
text. With today's formatting, this is not necessary, so everywhere
capitalization was used to show a command the <command> element is now
used instead, and everywhere a file is mentioned the <filename> element is used.
author | roug |
---|---|
date | Thu, 20 Mar 2003 20:19:53 +0000 |
parents | c565a4700689 |
children | 4dae346c4969 |
rev | line source |
---|---|
138 | 1 <refentry id="ex"> |
2 <refnamediv> | |
3 <refname>EX</refname> | |
4 <refpurpose>Execute program as overlay</refpurpose> | |
5 </refnamediv> | |
6 | |
7 <refsynopsisdiv> | |
8 <cmdsynopsis> | |
9 <command>EX</command> | |
10 <arg choice="plain"> | |
975
c565a4700689
The entitity replstart was replaced with <replaceable>
roug
parents:
138
diff
changeset
|
11 <replaceable>module name</replaceable> |
138 | 12 </arg> |
13 <arg choice="opt"> | |
975
c565a4700689
The entitity replstart was replaced with <replaceable>
roug
parents:
138
diff
changeset
|
14 <replaceable>modifiers</replaceable> |
138 | 15 </arg> |
16 <arg choice="opt"> | |
975
c565a4700689
The entitity replstart was replaced with <replaceable>
roug
parents:
138
diff
changeset
|
17 <replaceable>parameters</replaceable> |
138 | 18 </arg> |
19 </cmdsynopsis> | |
20 </refsynopsisdiv> | |
21 | |
22 <refsect1><title>Description</title> | |
23 <para> | |
24 This a shell built-in command that causes the process executing the | |
25 shell to start execution of another program. It permits a transition | |
26 from the shell to another program without creating another process, | |
27 thus conserving system memory. | |
28 </para> | |
29 <para> | |
30 This command is often used when the shell is called from another | |
31 program to execute a specific program, after which the shell is not | |
32 needed. For instance, applications which only use BASIC09 need not | |
33 waste memory space on SHELL. | |
34 </para> | |
35 <para> | |
1053
b5ff125a1d60
Since this book was only typeset in fixed width, single-font, they used
roug
parents:
975
diff
changeset
|
36 The <command>ex</command> command should always be the last command on a shell input |
138 | 37 line because any command line following will never be processed. |
38 </para> | |
39 <para> | |
40 NOTE: Since this is a built-in SHELL command, it does not appear in | |
41 the CMDS directory. | |
42 </para> | |
43 <para> | |
44 For more information see: 4.5, 4.6, 4.9 | |
45 | |
46 </para> | |
47 </refsect1> | |
48 <refsect1><title>Examples</title> | |
49 <screen> | |
50 ex BASIC09 | |
51 | |
52 tsmon /t1&; tsmon /t2&; ex tsmon /term | |
53 </screen> | |
54 </refsect1> | |
55 </refentry> | |
56 |