Tcl.n
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:8k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1993 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '"
  5. '" See the file "license.terms" for information on usage and redistribution
  6. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  7. '" 
  8. '" RCS: @(#) $Id: Tcl.n,v 1.9.2.1 2005/12/19 10:09:50 dkf Exp $
  9. '"
  10. .so man.macros
  11. .TH Tcl n "8.1" Tcl "Tcl Built-In Commands"
  12. .BS
  13. .SH NAME
  14. Tcl - Tool Command Language
  15. .SH SYNOPSIS
  16. Summary of Tcl language syntax.
  17. .BE
  18. .SH DESCRIPTION
  19. .PP
  20. The following rules define the syntax and semantics of the Tcl language:
  21. .IP "[1] fBCommands.fR"
  22. A Tcl script is a string containing one or more commands.
  23. Semi-colons and newlines are command separators unless quoted as
  24. described below.
  25. Close brackets are command terminators during command substitution
  26. (see below) unless quoted.
  27. .IP "[2] fBEvaluation.fR"
  28. A command is evaluated in two steps.
  29. First, the Tcl interpreter breaks the command into fIwordsfR
  30. and performs substitutions as described below.
  31. These substitutions are performed in the same way for all
  32. commands.
  33. The first word is used to locate a command procedure to
  34. carry out the command, then all of the words of the command are
  35. passed to the command procedure.
  36. The command procedure is free to interpret each of its words
  37. in any way it likes, such as an integer, variable name, list,
  38. or Tcl script.
  39. Different commands interpret their words differently.
  40. .IP "[3] fBWords.fR"
  41. Words of a command are separated by white space (except for
  42. newlines, which are command separators).
  43. .IP "[4] fBDouble quotes.fR"
  44. If the first character of a word is double-quote (``"'') then
  45. the word is terminated by the next double-quote character.
  46. If semi-colons, close brackets, or white space characters
  47. (including newlines) appear between the quotes then they are treated
  48. as ordinary characters and included in the word.
  49. Command substitution, variable substitution, and backslash substitution
  50. are performed on the characters between the quotes as described below.
  51. The double-quotes are not retained as part of the word.
  52. .IP "[5] fBBraces.fR"
  53. If the first character of a word is an open brace (``{'') then
  54. the word is terminated by the matching close brace (``}'').
  55. Braces nest within the word: for each additional open
  56. brace there must be an additional close brace (however,
  57. if an open brace or close brace within the word is
  58. quoted with a backslash then it is not counted in locating the
  59. matching close brace).
  60. No substitutions are performed on the characters between the
  61. braces except for backslash-newline substitutions described
  62. below, nor do semi-colons, newlines, close brackets,
  63. or white space receive any special interpretation.
  64. The word will consist of exactly the characters between the
  65. outer braces, not including the braces themselves.
  66. .IP "[6] fBCommand substitution.fR"
  67. If a word contains an open bracket (``['') then Tcl performs
  68. fIcommand substitutionfR.
  69. To do this it invokes the Tcl interpreter recursively to process
  70. the characters following the open bracket as a Tcl script.
  71. The script may contain any number of commands and must be terminated
  72. by a close bracket (``]'').
  73. The result of the script (i.e. the result of its last command) is
  74. substituted into the word in place of the brackets and all of the
  75. characters between them.
  76. There may be any number of command substitutions in a single word.
  77. Command substitution is not performed on words enclosed in braces.
  78. .IP "[7] fBVariable substitution.fR"
  79. If a word contains a dollar-sign (``$'') followed by one of the forms
  80. described below, then Tcl performs fIvariable
  81. substitutionfR:  the dollar-sign and the following characters are
  82. replaced in the word by the value of a variable.
  83. Variable substitution may take any of the following forms:
  84. .RS
  85. .TP 15
  86. fB$fInamefR
  87. fINamefR is the name of a scalar variable;  the name is a sequence
  88. of one or more characters that are a letter, digit, underscore,
  89. or namespace separators (two or more colons).
  90. .TP 15
  91. fB$fInamefB(fIindexfB)fR
  92. fINamefR gives the name of an array variable and fIindexfR gives
  93. the name of an element within that array.
  94. fINamefR must contain only letters, digits, underscores, and
  95. namespace separators, and may be an empty string.
  96. Command substitutions, variable substitutions, and backslash
  97. substitutions are performed on the characters of fIindexfR.
  98. .TP 15
  99. fB${fInamefB}fR
  100. fINamefR is the name of a scalar variable.  It may contain any
  101. characters whatsoever except for close braces.
  102. .LP
  103. There may be any number of variable substitutions in a single word.
  104. Variable substitution is not performed on words enclosed in braces.
  105. .RE
  106. .IP "[8] fBBackslash substitution.fR"
  107. If a backslash (``e'') appears within a word then
  108. fIbackslash substitutionfR occurs.
  109. In all cases but those described below the backslash is dropped and
  110. the following character is treated as an ordinary
  111. character and included in the word.
  112. This allows characters such as double quotes, close brackets,
  113. and dollar signs to be included in words without triggering
  114. special processing.
  115. The following table lists the backslash sequences that are
  116. handled specially, along with the value that replaces each sequence.
  117. .RS
  118. .TP 7
  119. efBafR
  120. Audible alert (bell) (0x7).
  121. .TP 7
  122. efBbfR
  123. Backspace (0x8).
  124. .TP 7
  125. efBffR
  126. Form feed (0xc).
  127. .TP 7
  128. efBnfR
  129. Newline (0xa).
  130. .TP 7
  131. efBrfR
  132. Carriage-return (0xd).
  133. .TP 7
  134. efBtfR
  135. Tab (0x9).
  136. .TP 7
  137. efBvfR
  138. Vertical tab (0xb).
  139. .TP 7
  140. efB<newline>fIwhiteSpacefR
  141. .
  142. A single space character replaces the backslash, newline, and all spaces
  143. and tabs after the newline.  This backslash sequence is unique in that it
  144. is replaced in a separate pre-pass before the command is actually parsed.
  145. This means that it will be replaced even when it occurs between braces,
  146. and the resulting space will be treated as a word separator if it isn't
  147. in braces or quotes.
  148. .TP 7
  149. ee
  150. Backslash (``e'').
  151. .VS 8.1 br
  152. .TP 7
  153. efIooofR 
  154. .
  155. The digits fIooofR (one, two, or three of them) give an eight-bit octal 
  156. value for the Unicode character that will be inserted.  The upper bits of the
  157. Unicode character will be 0.
  158. .TP 7
  159. efBxfIhhfR 
  160. .
  161. The hexadecimal digits fIhhfR give an eight-bit hexadecimal value for the
  162. Unicode character that will be inserted.  Any number of hexadecimal digits
  163. may be present; however, all but the last two are ignored (the result is
  164. always a one-byte quantity).  The upper bits of the Unicode character will
  165. be 0.
  166. .TP 7
  167. efBufIhhhhfR 
  168. .
  169. The hexadecimal digits fIhhhhfR (one, two, three, or four of them) give a
  170. sixteen-bit hexadecimal value for the Unicode character that will be
  171. inserted.
  172. .VE
  173. .LP
  174. Backslash substitution is not performed on words enclosed in braces,
  175. except for backslash-newline as described above.
  176. .RE
  177. .IP "[9] fBComments.fR"
  178. If a hash character (``#'') appears at a point where Tcl is
  179. expecting the first character of the first word of a command,
  180. then the hash character and the characters that follow it, up
  181. through the next newline, are treated as a comment and ignored.
  182. The comment character only has significance when it appears
  183. at the beginning of a command.
  184. .IP "[10] fBOrder of substitution.fR"
  185. Each character is processed exactly once by the Tcl interpreter
  186. as part of creating the words of a command.
  187. For example, if variable substitution occurs then no further
  188. substitutions are performed on the value of the variable;  the
  189. value is inserted into the word verbatim.
  190. If command substitution occurs then the nested command is
  191. processed entirely by the recursive call to the Tcl interpreter;
  192. no substitutions are performed before making the recursive
  193. call and no additional substitutions are performed on the result
  194. of the nested script.
  195. .RS
  196. .LP
  197. Substitutions take place from left to right, and each substitution is
  198. evaluated completely before attempting to evaluate the next.  Thus, a
  199. sequence like
  200. .CS
  201. set y [set x 0][incr x][incr x]
  202. .CE
  203. will always set the variable fIyfR to the value, fI012fR.
  204. .RE
  205. .IP "[11] fBSubstitution and word boundaries.fR"
  206. Substitutions do not affect the word boundaries of a command.
  207. For example, during variable substitution the entire value of
  208. the variable becomes part of a single word, even if the variable's
  209. value contains spaces.