Mercurial > hg > Members > kono > nitros9-code
annotate docs/nitros9guide/ex.refentry @ 1299:1f0995cd0431
REL is now back-ported to OS-9 Level One
author | boisy |
---|---|
date | Mon, 01 Sep 2003 16:59:50 +0000 |
parents | 4dae346c4969 |
children |
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> | |
1093 | 9 <command>ex</command> |
138 | 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 | |
1093 | 32 needed. For instance, applications which only use <command>basic09</command> need not |
33 waste memory space on <command>shell</command>. | |
138 | 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> | |
1093 | 40 NOTE: Since this is a built-in <command>shell</command> command, it does not appear in |
138 | 41 the CMDS directory. |
42 </para> | |
43 <para> | |
1093 | 44 For more information see: <xref linkend="sec4.5"/>, |
45 <xref linkend="sec4.6"/>, <xref linkend="sec4.9"/> | |
138 | 46 |
47 </para> | |
48 </refsect1> | |
49 <refsect1><title>Examples</title> | |
50 <screen> | |
51 ex BASIC09 | |
52 | |
53 tsmon /t1&; tsmon /t2&; ex tsmon /term | |
54 </screen> | |
55 </refsect1> | |
56 </refentry> | |
57 |