Difference between revisions of "!"
From Recital Documentation Wiki
Yvonnemilne (Talk | contribs) |
Yvonnemilne (Talk | contribs) |
||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
==Purpose== | ==Purpose== | ||
Execute an operating system command or external program. | Execute an operating system command or external program. | ||
Line 11: | Line 4: | ||
==Syntax== | ==Syntax== | ||
− | RUN | ! <os-command> | + | RUN | ! | !! <os-command> |
==See Also== | ==See Also== | ||
− | [[ALIAS]], [[FUNCTION]], [[KEYWORD]], [[LIST HISTORY]], [[ | + | [[ALIAS]], [[DB_RUNLOG]], [[DB_RUNOPTS]], [[DB_RUNOPTS2]], [[FUNCTION]], [[KEYWORD]], [[LIST HISTORY]], [[PIPETOSTR()]], [[QUIT]], [[SET HISTORY]], [[SET RUNCLEAR]], [[SET RUNWAIT]], [[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 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. |
==Example== | ==Example== | ||
<code lang="recital"> | <code lang="recital"> | ||
− | run | + | run ps -ef |
+ | ! ps -ef | ||
+ | !! ps -ef | ||
</code> | </code> | ||
==Products== | ==Products== | ||
− | Recital | + | Recital Server, Recital |
[[Category:Documentation]] | [[Category:Documentation]] | ||
[[Category:Commands]] | [[Category:Commands]] | ||
+ | [[Category:Disk and File Utilities]] | ||
+ | [[Category:Disk and File Utilities Commands]] |
Latest revision as of 16:14, 26 November 2009
Purpose
Execute an operating system command or external program.
Syntax
RUN | ! | !! <os-command>
See Also
ALIAS, DB_RUNLOG, DB_RUNOPTS, DB_RUNOPTS2, FUNCTION, KEYWORD, LIST HISTORY, PIPETOSTR(), QUIT, SET HISTORY, SET RUNCLEAR, SET RUNWAIT, 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. The !! command operates in the same way, but any output is displayed at the current screen location rather than the top of the screen.
Example
run ps -ef ! ps -ef !! ps -ef
Products
Recital Server, Recital