script::init

Description

Called before script::run, script::help and script::tabc. The script::init procedure can use the Tcl variable tmsh::csh to determine whether script::run, script::help or script::tabc are invoked (see the section on context sensitive help). Additionaly, you can use script::init to initialize global variables. Optional.

Syntax

proc script::init {} {

}

Examples

proc script::int {} {
 set ::pool_ids ""
}