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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1993 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '" Copyright (c) 2000 Scriptics Corporation.
  5. '"
  6. '" See the file "license.terms" for information on usage and redistribution
  7. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  8. '" 
  9. '" RCS: @(#) $Id: source.n,v 1.5.18.1 2004/10/27 14:23:58 dkf Exp $
  10. '" 
  11. .so man.macros
  12. .TH source n "" Tcl "Tcl Built-In Commands"
  13. .BS
  14. '" Note:  do not modify the .SH NAME line immediately below!
  15. .SH NAME
  16. source - Evaluate a file or resource as a Tcl script
  17. .SH SYNOPSIS
  18. fBsource fIfileNamefR
  19. .sp
  20. fBsourcefR fB-rsrc fIresourceName fR?fIfileNamefR?
  21. .sp
  22. fBsourcefR fB-rsrcid fIresourceId fR?fIfileNamefR?
  23. .BE
  24. .SH DESCRIPTION
  25. .PP
  26. This command takes the contents of the specified file or resource
  27. and passes it to the Tcl interpreter as a text script.  The return
  28. value from fBsourcefR is the return value of the last command
  29. executed in the script.  If an error occurs in evaluating the contents
  30. of the script then the fBsourcefR command will return that error.
  31. If a fBreturnfR command is invoked from within the script then the
  32. remainder of the file will be skipped and the fBsourcefR command
  33. will return normally with the result from the fBreturnfR command.
  34. .PP
  35. .VS 8.4
  36. The end-of-file character for files is '\32' (^Z) for all platforms.
  37. The source command will read files up to this character.  This
  38. restriction does not exist for the fBreadfR or fBgetsfR commands,
  39. allowing for files containing code and data segments (scripted documents).
  40. If you require a ``^Z'' in code for string comparison, you can use
  41. ``\032'' or ``\u001a'', which will be safely substituted by the Tcl
  42. interpreter into ``^Z''.
  43. .VE 8.4
  44. .PP
  45. The fI-rsrcfR and fI-rsrcidfR forms of this command are only
  46. available on Macintosh computers.  These versions of the command
  47. allow you to source a script from a fBTEXTfR resource.  You may specify
  48. what fBTEXTfR resource to source by either name or id.  By default Tcl
  49. searches all open resource files, which include the current
  50. application and any loaded C extensions.  Alternatively, you may
  51. specify the fIfileNamefR where the fBTEXTfR resource can be found.
  52. .SH EXAMPLE
  53. Run the script in the file fBfoo.tclfR and then the script in the
  54. file fBbar.tclfR:
  55. .CS
  56. fBsourcefR foo.tcl
  57. fBsourcefR bar.tcl
  58. .CE
  59. Alternatively:
  60. .CS
  61. foreach scriptFile {foo.tcl bar.tcl} {
  62.    fBsourcefR $scriptFile
  63. }
  64. .CE
  65. .SH "SEE ALSO"
  66. file(n), cd(n), info(n)
  67. .SH KEYWORDS
  68. file, script