Difference between revisions of "Shell Commands/RXCmd"

From MorphOS Library

< Shell Commands

 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
'''RXCmd''' - Executes single ARexx commands on a given ARexx port directly
+
'''RXCmd''' - Executes an ARexx command on a given ARexx port directly
  
 
PORT/A,COMMAND/A
 
PORT/A,COMMAND/A
 
  <nowiki>
 
  <nowiki>
PORT    - Name of the ARexx port (case sensitive)
+
PORT    - Name of an ARexx port (case sensitive)
COMMAND - The ARexx command to be executed</nowiki>
+
COMMAND - ARexx command to be executed</nowiki>
  
Example:
+
RXCmd can be used to send single ARexx commands to a program. It even works with the dummy rexxsyslib.library file provided with the standard MorphOS installation, while the traditional RX command requires installation of a 3rd party rexxsyslib.library file.
 +
 
 +
Examples:
 
  RXCmd OWB.1 FULLSCREEN
 
  RXCmd OWB.1 FULLSCREEN
 +
RXCmd JUKEBOX "GET TITLE"

Latest revision as of 09:21, 24 March 2018

RXCmd - Executes an ARexx command on a given ARexx port directly

PORT/A,COMMAND/A

PORT    - Name of an ARexx port (case sensitive)
COMMAND - ARexx command to be executed

RXCmd can be used to send single ARexx commands to a program. It even works with the dummy rexxsyslib.library file provided with the standard MorphOS installation, while the traditional RX command requires installation of a 3rd party rexxsyslib.library file.

Examples:

RXCmd OWB.1 FULLSCREEN
RXCmd JUKEBOX "GET TITLE"