JANUS DELETE: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
 
 
Line 5: Line 5:


==Syntax==
==Syntax==
<p class="syntax"> JANUS DELETE portname
<p class="syntax"> <span class="literal">JANUS DELETE</span> <span class="term">portname</span>
</p>
</p>


Where <var class="term">portname</var> is the name of the port definition to delete. Once a port definition is deleted it must be redefined, using <var>[[JANUS DEFINE]]</var>, before it can be started again.


Where <var class="term">portname</var> is the name of the port definition to delete. Once a port definition is deleted it must be redefined, using <var>JANUS DEFINE</var>, before it can be started again.
==Example==
 
In the following example, all definitions for port names beginning with <code>SIMPS</code> are deleted from the Online.
<p class="code"> JANUS DELETE SIMPS*
<p class="code">JANUS DELETE SIMPS*
</p>
</p>


In the above example all definitions for port names beginning with <code>SIMPS</code> are deleted from the Online.
==See also==
 
<ul>
See: [[List_of_Janus_commands|Janus command list]]
<li>[[List_of_Janus_commands|Janus command list]]
</ul>


[[Category:Janus commands|JANUS DELETE]]
[[Category:Janus commands|JANUS DELETE]]

Latest revision as of 17:38, 16 April 2013

Remove Janus port from system

This deletes the definition of the named port. The port must not be in the START state when JANUS DELETE is issued.

Syntax

JANUS DELETE portname

Where portname is the name of the port definition to delete. Once a port definition is deleted it must be redefined, using JANUS DEFINE, before it can be started again.

Example

In the following example, all definitions for port names beginning with SIMPS are deleted from the Online.

JANUS DELETE SIMPS*

See also