Difference between revisions of "RUN"

From Lianjapedia
Jump to: navigation, search
Line 6: Line 6:
 
   
 
   
 
==See Also==
 
==See Also==
[[PIPETOSTR()]], [[QUIT]], [[RUN()]], [[SHOWDOCUMENT()]], [[SPAWN]]
+
[[PIPETOSTR()]], [[QUIT]], [[SHOWDOCUMENT()]], [[SPAWN]]
 
+
  
 
==Description==
 
==Description==
Line 14: Line 13:
 
==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>
  

Revision as of 12:29, 14 January 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"