「ソース」とは何ですか?


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

存在し、実行可能です。Ubuntuにそれに関するドキュメントがないのはなぜですか?それは何をするためのものか?どうすればそれに関するドキュメントをインストールできますか?



54
あなたが忘れていた $ type source source is a shell built-in
-bnjmn

2
私のシェルはこれを返しました$ whatis source source (1) - bash built-in commands, see bash(1)。また、man sourceに私を取るBASH_BUILTINS(1)manページ。これはFedora btwにあります。これらのdebianパッケージがドキュメント化されていない(または不適切な)理由はわかりません。
arielnmz 14

4
@lesmana、素晴らしいリンク。そのリンクされた答えは、この質問に対するより徹底的な答えです。
スコット14

5
「ヘルプソース」を試してください
ジャッサー

回答:


470

source、現在のシェルで引数として渡されたファイルのコンテンツを実行するbashシェルの組み込みコマンドです。.(期間)に同義語があります。

構文

. filename [arguments]

source filename [arguments]

8
sourcebash固有のコマンドですか、他のシェルにもありますか?(質問でタグを正しく取得することを求めています...)
Jonik

2
アファイクsourceはボーンシェルに存在していたため、おそらくすべての子孫に存在していました。en.wikipedia.org/wiki/Bourne_shell。すべてのシェルにsourceコマンドがあるわけではなく、どのシェルにコマンドが含まれているかについてはあまりわかりません。
nagul

13
@nagul sourceは、Bourneシェルには存在していませんでした。これは、GNU拡張機能であり、ずっと後に登場しました。元の移植可能な構文(POSIX)は、.代わりに「ドット」コマンドを使用することです。source入力するのが長く、付加価値がないという事実を考えると、私は決して使用しません。その主な目的は、初心者向けにスクリプトを読みやすくすることだと思います。
jlliagre

18
@jlliagre私の個人的な「なぜソースを持っているのかを説明する」というのsourceは、より記述的なだけでなく、タイプミス以外の何かのように見えます。電子メールで技術コマンドを送信するときに、ピリオド/ドットをスキップする人がいます。
リッチホモルカ14年

3
このコマンドの一般的な使用法の1つは、sourceほとんどが変数の割り当てを含む「構成ファイル」内のシェルスクリプトです。その後、変数の割り当てにより、スクリプトの残りの部分が行うことを制御します。もちろん、適切なスクリプトはsource、の前に変数を適切なデフォルトに設定するか、少なくとも有効な値をチェックします。
ローレンス

276

注意してください!./まったく同じでsourceはありません

  • ./scriptスクリプトを実行可能ファイルとして実行し、新しいシェルを起動して実行します
  • source script現在のシェル環境でfilenameからコマンドを読み取り、実行します

注:./scriptはではありません. scriptが、. script==source script

https://askubuntu.com/questions/182012/is-there-a-difference-between-and-source-in-bash-after-all?lq=1


27
./commandと。脚本。source-commandは.-commandと同じです。./mehを使用すると、現在のディレクトリでmehという名前のscript / binaryを実行し、source /とは関係ありません。-コマンド。リンクの回答で説明したように。
ヨアキムエロフソン

2
@JoakimElofssonリンクで言及されていますが、誤解を避けるために答えを修正します。修正してください。
ダンファット

3
一瞬思ったので、それは、このいずれかに受け入れ答えも指している種類のが重要だという./ == source == .
ダニエル・F

90

「type」コマンドを知っていると便利です。

> type source
source is a shell builtin

何かがシェルビルトインであるときはいつでもするべき時ですman bash


1
読むときは常に新しいことを知ってくださいman

19
また、使用することができhelp {builtin-name}、すなわちhelp source
ローレンス

1
helpどこでも動作しません(少なくともzshで)。typeします。
kumarharsh

4
増幅するには:bashを使用しており、(おそらく 'type'を介して)それが組み込みコマンドである場合、 'help'は4,184行の ' man bash 'テキスト。
ロン・バーク

38

。(ピリオド)は、現在のシェルで引数として渡されたファイルからコマンドを実行するbashシェル組み込みコマンドです。「ソース」は「。」の同義語です。

Bashのmanページから:

. 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.

27

「ソース」は「。」の長いバージョンです コマンド。bashプロンプトで次のことができます。

source ~/.bashrc

現在実行中のbashの(変更された?)bash設定をリロードします。

ショートバージョンは次のようになります:

. ~/.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. 

これは受け入れられた答えでなければなりません。
ピーターモーテンセン

25

sourceコマンドが提供されたスクリプトを実行(実行可能権限がある必須ではありません、現在ながら、シェル環境を./提供する実行実行中のスクリプト新しいシェルを。

sourceコマンドには同義語があり. filenameます。

より明確にするために、エイリアスを設定する次のスクリプトをご覧ください。

make_alias

#! /bin/bash

alias myproject='cd ~/Documents/Projects/2015/NewProject'

このスクリプトを実行するには、2つの選択肢があります。ただし、オプションが1つだけの場合、これら2つのオプション間で現在のシェルに必要なエイリアスを作成できます。

オプション1: ./make_alias

最初にスクリプトを実行可能にします。

chmod +x make_alias

実行する

./make_alias

確認する

alias

出力

**nothing**

おっと!エイリアスは新しいシェルではなくなりました。

2番目のオプションに進みましょう。

オプション2: source make_alias

実行する

source make_alias

または

. make_alias

確認する

alias

出力

alias myproject='cd ~/Documents/Projects/2015/NewProject'

うんエイリアスが設定されます。


10

疑問がある場合は、info次のコマンドを使用するのが最善です。

[root@abc ~]# info source

BASH BUILTIN COMMANDS
       Unless otherwise noted, each builtin command documented in this section
       as accepting options preceded by - accepts -- to signify the end of the
       options.   The  :, true, false, and test builtins do not accept options
       and do not treat -- specially.  The exit, logout, break, continue, let,
       and  shift builtins accept and process arguments beginning with - with-
       out requiring --.  Other builtins that accept  arguments  but  are  not
       specified  as accepting options interpret arguments beginning with - as
       invalid options and require -- to prevent this interpretation.
       : [arguments]
              No effect; the command does nothing beyond  expanding  arguments
              and  performing any specified redirections.  A zero exit code is
              returned.

        .  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.

RTFM以上のものを提供できますか?
ピーターモーテンセン

5

シェルにコマンド「help source」を入力します。

次のような出力が得られます。

source: source filename [arguments]

Execute commands from a file in the current shell.

Read and execute commands from FILENAME in the current shell.  The
entries in $PATH are used to find the directory containing FILENAME.
If any ARGUMENTS are supplied, they become the positional parameters
when FILENAME is executed.

Exit Status:
Returns the status of the last command executed in FILENAME; fails if
FILENAME cannot be read.

4

Linux Documentation Project、Advanced Bash Scripting Guide、
チャプター15- Internals Commands and Builtinsから

ソース(ドットコマンド):
このコマンドは、コマンドラインから呼び出されると、スクリプトを実行します。スクリプト内で、ソースファイル名はファイルファイル名をロードします。ファイルのソース(ドットコマンド)は、スクリプトにコードをインポートし、スクリプトに追加します(Cプログラムの#includeディレクティブと同じ効果)。最終的な結果は、コードの「ソース」行がスクリプトの本文に物理的に存在する場合と同じです。これは、複数のスクリプトが共通のデータファイルまたは関数ライブラリを使用する状況で役立ちます。
ソースファイル自体が実行可能なスクリプトである場合、それは実行され、それを呼び出したスクリプトに制御を返します。ソース化された実行可能スクリプトは、この目的のためにリターンを使用する場合があります。

したがって、Cプログラミング言語に精通している人にとっては、ファイルのソースは#includeディレクティブに似た効果があります。

次のように、ソースとなるファイルに位置引数を渡すこともできることに注意してください。

$ source $filename $arg1 arg2

この回答は、前の9つの回答とどう違うのですか?
スティーブンラウチ

2
前に言及しなかった別の情報源と追加情報を追加します。
アレクサンドロデオリベイラ

それsourceが議論をしたり使用することができるとは知りませんでしたreturn
ジョー

2

それは素晴らしいコマンドされているが、どちらのことに留意すべきであるsourceものの速記.ソース に複数のファイルを、意味

source *.sh

または

. script1.sh script2.sh

ではない仕事。

forループを使用してフォールバックすることもできますが、実行可能ファイルを何度も発行し、複数のコマンドを作成するか、それを発行します。

結論:source入力として複数のファイルを使用しません。引数は1でなければなりません。

私見を吸う。


0

ソースを使用すると、別のファイルから変数または関数をスクリプトに渡し、それらを再度記述することなく使用できます。

FI:

#!/bin/bash

source /etc/environment

source /myscripts/jetty-common/config/jetty-functions.sh

乾杯

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.