Difference between revisions of "Command:Execute"

From Lavish Software Wiki
Jump to navigation Jump to search
 
Line 14: Line 14:
  
 
== See Also ==
 
== See Also ==
 +
*[[LavishScript:Commands|Commands]]

Revision as of 06:05, 28 February 2005

Syntax

Execute <command>

Description

Executes a command, after parsing variables. This can be used, for example, to execute a command stored in a variable, or to cause commands that normally prevent the system from parsing variables in its parameters to do so.

Examples

Example 1

Input
declare MyCommand string global "echo My eyes! The goggles -- they do nothing!"
execute ${MyCommand}
Output
My eyes! The goggles -- they do nothing!

See Also