Mercurial > hg > Members > kono > nitros9-code
view docs/nitros9guide/ex.refentry @ 2811:611715587834 lwtools-port
Updated rules.mak and level1/coco1/bootfiles/makefile
Updated the rules.mak file to remove the format entire image related
to drivewire server disk images.
Updated level1/coco1/bootfiles/makefile to create 3 new bootfile images.
These images are stripped down to just the common files needed
for vovdg games on os9 level 1. These bootfiles are for becker, dw,
and arduino. Also corrected a duplicated dd descriptor when building
some bootfiles that had both floppy_40d, floppy_80d, RBDW, RBBECKER,
and RBARDUINO. Removed the dd descriptor from each of these sections
and made it where the dd descriptor for the specific section was added
in the main bootfile list.
author | David Ladd <drencor-xeen@users.sf.net> |
---|---|
date | Mon, 11 Feb 2013 20:16:24 -0600 |
parents | 4dae346c4969 |
children |
line wrap: on
line source
<refentry id="ex"> <refnamediv> <refname>EX</refname> <refpurpose>Execute program as overlay</refpurpose> </refnamediv> <refsynopsisdiv> <cmdsynopsis> <command>ex</command> <arg choice="plain"> <replaceable>module name</replaceable> </arg> <arg choice="opt"> <replaceable>modifiers</replaceable> </arg> <arg choice="opt"> <replaceable>parameters</replaceable> </arg> </cmdsynopsis> </refsynopsisdiv> <refsect1><title>Description</title> <para> This a shell built-in command that causes the process executing the shell to start execution of another program. It permits a transition from the shell to another program without creating another process, thus conserving system memory. </para> <para> This command is often used when the shell is called from another program to execute a specific program, after which the shell is not needed. For instance, applications which only use <command>basic09</command> need not waste memory space on <command>shell</command>. </para> <para> The <command>ex</command> command should always be the last command on a shell input line because any command line following will never be processed. </para> <para> NOTE: Since this is a built-in <command>shell</command> command, it does not appear in the CMDS directory. </para> <para> For more information see: <xref linkend="sec4.5"/>, <xref linkend="sec4.6"/>, <xref linkend="sec4.9"/> </para> </refsect1> <refsect1><title>Examples</title> <screen> ex BASIC09 tsmon /t1&; tsmon /t2&; ex tsmon /term </screen> </refsect1> </refentry>