NAME
Run — Run script within shell as if from command line.
SYNOPSIS
Run Script ?args ...?
DESCRIPTION
Return Value
Return code from script.
Arguments
ScriptLocation of script to source.
argsOptional. These will be added to argv, if any.
More Info
Like source except it will first populate argv with args so that it is more like running the script from the command line.

For information regarding exceptions / errors, see here.
EXAMPLES
% set QuickScript {puts "[expr [lindex $argv 0] + [lindex $argv 1]]"}
puts "[expr [lindex $argv 0] + [lindex $argv 1]]"
% String2File $QuickScript adder.tcl
% Run adder.tcl 1 2
3
SEE ALSO
source
KEYWORDS
argument, eval, execute