Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства для  версии 10.9 Mac OS X

Если Вы выполняете различную версию  Mac OS X, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.



source(n)                                   Tcl Built-In Commands                                  source(n)



____________________________________________________________________________________________________________

NAME
       source - Evaluate a file or resource as a Tcl script

SYNOPSIS
       source fileName

       source -encoding encodingName fileName                                                                |
____________________________________________________________________________________________________________

DESCRIPTION
       This  command  takes  the  contents of the specified file or resource and passes it to the Tcl inter-preter interpreter
       preter as a text script.  The return value from source is the return value of the last  command  exe-cuted executed
       cuted  in  the  script.   If an error occurs in evaluating the contents of the script then the source
       command will return that error.  If a return command is invoked  from  within  the  script  then  the
       remainder  of  the  file  will be skipped and the source command will return normally with the result
       from the return command.

       The end-of-file character for files is "\32" (^Z) for all platforms.  The source  command  will  read
       files  up to this character.  This restriction does not exist for the read or gets commands, allowing
       for files containing code and data segments (scripted documents).  If you require a "^Z" in code  for
       string comparison, you can use "\032" or "\u001a", which will be safely substituted by the Tcl inter-preter interpreter
       preter into "^Z".

       The -encoding option is used to specify the encoding of  the  data  stored  in  fileName.   When  the |
       -encoding option is omitted, the system encoding is assumed.

EXAMPLE
       Run the script in the file foo.tcl and then the script in the file bar.tcl:
              source foo.tcl
              source bar.tcl
       Alternatively:
              foreach scriptFile {foo.tcl bar.tcl} {
                 source $scriptFile
              }

SEE ALSO
       file(n), cd(n), encoding(n), info(n)

KEYWORDS
       file, script



Tcl                                                                                                source(n)

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации к проекту Tcl.
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API к Apple через Генератор отчетов Ошибки и к проекту Tcl через их страницу создания отчетов ошибки.
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.