56 lines
2.4 KiB
Plaintext
56 lines
2.4 KiB
Plaintext
|
'\"
|
||
|
'\" Copyright (c) 1993 The Regents of the University of California.
|
||
|
'\" All rights reserved.
|
||
|
'\"
|
||
|
'\" Permission is hereby granted, without written agreement and without
|
||
|
'\" license or royalty fees, to use, copy, modify, and distribute this
|
||
|
'\" documentation for any purpose, provided that the above copyright
|
||
|
'\" notice and the following two paragraphs appear in all copies.
|
||
|
'\"
|
||
|
'\" IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY
|
||
|
'\" FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
||
|
'\" ARISING OUT OF THE USE OF THIS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
|
||
|
'\" CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||
|
'\"
|
||
|
'\" THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
|
||
|
'\" INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
||
|
'\" AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
||
|
'\" ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
|
||
|
'\" PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
||
|
'\"
|
||
|
'\" $Header: /user6/ouster/tcl/man/RCS/unknown.n,v 1.2 93/10/13 17:19:06 ouster Exp $ SPRITE (Berkeley)
|
||
|
'\"
|
||
|
.so man.macros
|
||
|
.HS unknown tcl
|
||
|
.BS
|
||
|
'\" Note: do not modify the .SH NAME line immediately below!
|
||
|
.SH NAME
|
||
|
unknown \- Handle attempts to use non-existent commands
|
||
|
.SH SYNOPSIS
|
||
|
\fBunknown \fIcmdName \fR?\fIarg arg ...\fR?
|
||
|
.BE
|
||
|
|
||
|
.SH DESCRIPTION
|
||
|
.PP
|
||
|
This command doesn't actually exist as part of Tcl, but Tcl will
|
||
|
invoke it if it does exist.
|
||
|
If the Tcl interpreter encounters a command name for which there
|
||
|
is not a defined command, then Tcl checks for the existence of
|
||
|
a command named \fBunknown\fR.
|
||
|
If there is no such command, then the interpreter returns an
|
||
|
error.
|
||
|
If the \fBunknown\fR command exists, then it is invoked with
|
||
|
arguments consisting of the fully-substituted name and arguments
|
||
|
for the original non-existent command.
|
||
|
The \fBunknown\fR command typically does things like searching
|
||
|
through library directories for a command procedure with the name
|
||
|
\fIcmdName\fR, or expanding abbreviated command names to full-length,
|
||
|
or automatically executing unknown commands as sub-processes.
|
||
|
In some cases (such as expanding abbreviations) \fBunknown\fR will
|
||
|
change the original command slightly and then (re-)execute it.
|
||
|
The result of the \fBunknown\fR command is used as the result for
|
||
|
the original non-existent command.
|
||
|
|
||
|
.SH KEYWORDS
|
||
|
error, non-existent command
|