Что делает 'источник'?

$ whatis source
source: nothing appropriate.
$ man source
No manual entry for source
$ source
bash: source: filename argument required
source: usage: source filename [arguments]

Это существует, и это выполнимо. Почему не там никакая документация об этом в Ubuntu? Что это делает? Как я могу установить документацию об этом?

591
задан 05.09.2014, 22:36

3 ответа

source встроенная команда оболочки удара, которая выполняется, содержание файла передало как аргумент в текущей оболочке. Это имеет синоним в . (период).

Синтаксис

. filename [arguments]

source filename [arguments]
475
ответ дан 07.12.2019, 07:33
  • 1
    source удар определенная команда или другие оболочки имеет его также? (Я прошу разбираться в тегах по вопросу...), счет – Jonik 24.09.2009, 14:17
  • 2
    Afaik, source присутствовал в Оболочке Bourne и следовательно вероятно, существующий во всех ее потомках. en.wikipedia.org/wiki/Bourne_shell. Я знаю, что не все оболочки имеют source команда, менее бесспорная, о котором оболочки действительно содержат его. – nagul 24.09.2009, 14:47

. (период), встроенная команда оболочки удара, которая выполняется, команды из файла передали как аргумент в текущей оболочке. 'источник' является синонимом для '.'.

Из страницы справочника Bash:

. filename [arguments]
source filename [arguments]
       Read  and  execute  commands  from filename in the current shell
       environment and return the exit status of the last command  exe‐
       cuted from filename.  If filename does not contain a slash, file
       names in PATH are used to find the  directory  containing  file‐
       name.   The  file  searched  for in PATH need not be executable.
       When bash is  not  in  posix  mode,  the  current  directory  is
       searched  if no file is found in PATH.  If the sourcepath option
       to the shopt builtin command is turned  off,  the  PATH  is  not
       searched.   If any arguments are supplied, they become the posi‐
       tional parameters when  filename  is  executed.   Otherwise  the
       positional  parameters  are unchanged.  The return status is the
       status of the last command exited within the  script  (0  if  no
       commands  are  executed),  and false if filename is not found or
       cannot be read.
39
ответ дан 07.12.2019, 07:33

'источник' является долгой версией '.' команды. На подсказке удара можно сделать:

source ~/.bashrc

перезагружать Ваш (измененный?) установка удара для текущего рабочего удара.

Короткая версия была бы:

. ~/.bashrc

Страница справочника:

. filename [arguments]
source filename [arguments]
    Read and execute commands from filename in the current shell environment and
    return the exit status of the last command executed from filename. If 
    filename does not contain a slash, file names in PATH are used to find the
    directory containing filename. The file searched for in PATH need not be
    executable. When bash is not in posix mode, the current directory is
    searched if no file is found in PATH. If the sourcepath option to the shopt
    builtin command is turned off, the PATH is not searched. If any arguments
    are supplied, they become the positional parameters when filename is
    executed. Otherwise the positional parameters are unchanged. The return 
    status is the status of the last command exited within the script (0 if no
    commands are executed), and false if filename is not found or cannot be
    read. 
28
ответ дан 07.12.2019, 07:33

Теги

Похожие вопросы