scheme
scheme
{-create s_name [ -package s_pkgName ] [ -overwrite [ true | false ] ]
| -copy s_name -from s_name [ -package s_pkgName ] [ -overwrite [ true | false ] ]
| -rename s_name -from s_name [ -overwrite [ true | false ] ]
| -delete s_name [ -package s_pkgName ]
| -activate s_name [ -package s_pkgName ]
| -comment s_name -value s_text
| -compare s_name -against s_name [ -package s_pkgName ]}
Description
Performs operations for managing schemes.
Schemes provide a method for quickly saving and restoring environment variables used for some Space-based Router functions. Each group of environment variables is defined and manipulated by a scheme package. The default scheme is initialized by Space-based Router, determines the available package types and the environment variables included in each package, and is used when creating new schemes.
You can create multiple schemes using the -create and -copy arguments. In addition, one scheme for each package type is the current or active scheme. This is the scheme used by the function associated with the package for its next run.
Arguments
Examples
The following commands are equivalent. Each command creates a new scheme, myScheme, from the default scheme.
scheme -create myScheme
scheme -copy myScheme -from default
The following command activates the power_cell_rows package of the myScheme scheme. Assuming that the default scheme is active, all default scheme packages will be active except for the power_cell_rows package after this command is issued.
scheme -activate myScheme -package power_cell_rows
Related Topics
Return to top