TABLE OF CONTENTS
::pwtk::input::scriptGet
SYNOPSIS
proc ::pwtk::input::scriptGet {name} {
PURPOSE
Get the $name script.
ARGUMENTS
- name -- name of the script to return.
RETURN VALUE
The content of the $name script. If the $name script does not exist, empty string is returned.
SOURCE
variable script ::pwtk::ifexist script($name) { return $script($name) } else { return {} } }