Difference between revisions of "RUN"

From Lianjapedia
Jump to: navigation, search
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Execute an operating system command or external program.
 
Execute an operating system command or external program.
 
  
 
==Syntax==
 
==Syntax==
RUN | ! | !! <os-command>
+
RUN | ! <os-command>
 
   
 
   
 
 
==See Also==
 
==See Also==
[[ALIAS]], [[DB_RUNLOG]], [[DB_RUNOPTS]], [[DB_RUNOPTS2]], [[FUNCTION]], [[KEYWORD]], [[LIST HISTORY]], [[PIPETOSTR()]], [[QUIT]], [[RUN()]], [[SET HISTORY]], [[SET RUNCLEAR]], [[SET RUNWAIT]], [[SPAWN]]
+
[[PIPETOSTR()]], [[QUIT]], [[SHOWDOCUMENT()]], [[SPAWN]]
 
+
  
 
==Description==
 
==Description==
The RUN command and the ! command are synonymous.  They provide the facility for running operating system commands or external programs from within the system. The !! command operates in the same way, but any output is displayed at the current screen location rather than the top of the screen.
+
The RUN command and the ! command are synonymous.  They provide the facility for running operating system commands or external programs from within the system.
 
+
  
 
==Example==
 
==Example==
 
<code lang="recital">
 
<code lang="recital">
run ps -ef
+
run "C:\Program Files (x86)\Lianja\bin\lianjaruntime.exe"
! ps -ef
+
!! ps -ef
+
 
</code>
 
</code>
  
 
==Products==
 
Recital Server, Recital
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Commands]]
 
[[Category:Commands]]
[[Category:Disk and File Utilities]]
+
[[Category:Disk and File Commands]]
[[Category:Disk and File Utilities Commands]]
+

Latest revision as of 06:39, 4 February 2013

Purpose

Execute an operating system command or external program.

Syntax

RUN | ! <os-command>

See Also

PIPETOSTR(), QUIT, SHOWDOCUMENT(), SPAWN

Description

The RUN command and the ! command are synonymous. They provide the facility for running operating system commands or external programs from within the system.

Example

run "C:\Program Files (x86)\Lianja\bin\lianjaruntime.exe"