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

 

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

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

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

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

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

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

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



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



____________________________________________________________________________________________________________

NAME
       gets - Read a line from a channel

SYNOPSIS
       gets channelId ?varName?
____________________________________________________________________________________________________________


DESCRIPTION
       This  command  reads  the  next  line  from  channelId, returns everything in the line up to (but not
       including) the end-of-line character(s), and discards the end-of-line character(s).

       ChannelId must be an identifier for an open channel such as the Tcl standard input  channel  (stdin),
       the  return  value  from an invocation of open or socket, or the result of a channel creation command
       provided by a Tcl extension. The channel must have been opened for input.

       If varName is omitted the line is returned as the result of the command.   If  varName  is  specified
       then the line is placed in the variable by that name and the return value is a count of the number of
       characters returned.

       If end of file occurs while scanning for an end of line, the command returns whatever input is avail-able available
       able  up  to  the  end  of file.  If channelId is in nonblocking mode and there is not a full line of
       input available, the command returns an empty string and does not consume any input.  If  varName  is
       specified  and  an  empty string is returned in varName because of end-of-file or because of insuffi-cient insufficient
       cient data in nonblocking mode, then the return count is -1.  Note that if varName is  not  specified
       then  the  end-of-file and no-full-line-available cases can produce the same results as if there were
       an input line consisting only of the end-of-line character(s).  The eof and fblocked commands can  be
       used to distinguish these three cases.

EXAMPLE
       This  example reads a file one line at a time and prints it out with the current line number attached
       to the start of each line.

              set chan [open "some.file.txt"]
              set lineNumber 0
              while {[gets $chan line] >= 0} {
                  puts "[incr lineNumber]: $line"
              }
              close $chan


SEE ALSO
       file(n), eof(n), fblocked(n), Tcl_StandardChannels(3)


KEYWORDS
       blocking, channel, end of file, end of line, line, nonblocking, read



Tcl                                                  7.5                                             gets(n)

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

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

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