$ whatis source
source: nothing appropriate.
$ man source
No manual entry for source
$ source
bash: source: filename argument required
source: usage: source filename [arguments]
存在し、実行可能です。 Ubuntuにそれに関する文書がないのはなぜですか?それは何をするためのものか?それに関する文書をインストールするにはどうすればいいですか?
source
は、引数として渡されたファイルの内容を実行するbashシェル組み込みコマンドです。現在のシェルでは。 .
(period)と同義語です。
構文
. filename [arguments] source filename [arguments]
注意してください! ./
とsource
はまったく同じではありません。
./script
はスクリプトを実行可能ファイルとして実行し、新しいシェルを起動して実行します。source script
は、現在のシェル環境でfilenameからコマンドを読み込んで実行します。注:./script
は. script
ではありませんが、. script
== source script
Typeコマンドを知っておくと便利です。
> type source
source is a Shell builtin
シェル組み込みのものがあるときはいつでもman bash
をする時が来ました。
。 (ピリオド)は、現在のシェルで、引数として渡されたファイルからコマンドを実行する bashシェル組み込みコマンド です。 'source'は '。'の同義語です。
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.
'source'は '。'の長いバージョンです。コマンド。 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 short
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.
source
コマンドは提供されたスクリプトを実行します(実行許可は必須ではありません) current シェル環境、./
は提供された実行可能ファイルスクリプトを new Shellで実行します。
source
コマンドは同義語. filename
を持ちます。
より明確にするために、エイリアスを設定する次のスクリプトを見てください。
#! /bin/bash
alias myproject='cd ~/Documents/Projects/2015/NewProject'
このスクリプトを実行するには2つの選択肢があります。しかし、1つのオプションだけで、これら2つのオプションの中から現在のシェルに必要なエイリアスを作成できます。
./make_alias
最初にスクリプトを実行可能にします。
chmod +x make_alias
./make_alias
alias
**nothing**
Whoops! Aliasは新しいシェルを廃止しました。
2番目の方法で行きましょう。
source make_alias
source make_alias
または
. make_alias
alias
alias myproject='cd ~/Documents/Projects/2015/NewProject'
はい Aliasが設定されています。
よくわからないときは、 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.
シェルに「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.
source
もその短縮形の.
も、source複数のファイルにはならないことに注意してください。意味
source *.sh
または
. script1.sh script2.sh
動作しません。
for
ループを使用してフォールバックすることもできますが、実行可能ファイルを何度も発行し、複数のコマンドを作成するか発行します。
結論:source
は複数のファイルを入力として取りません。引数は一つでなければなりません。
これは私見を吸う。
Linux Documentation ProjectのAdvanced Bash Scripting Guideから、
第15章 - 内部コマンドとビルトイン :
source、。(ドットコマンド):
このコマンドは、コマンドラインから呼び出されると、スクリプトを実行します。スクリプト内では、ソースファイル名はファイルファイル名をロードします。ファイルを読み込む(dot-command)と、スクリプトにコードが追加されてスクリプトに追加されます(Cプログラムの#includeディレクティブと同じ効果)。最終的な結果は、「ソース」コード行がスクリプトの本文に物理的に存在していた場合と同じです。これは、複数のスクリプトが共通のデータファイルまたは関数ライブラリを使用する場合に便利です。
ソースファイル自体が実行可能スクリプトである場合は、実行されてから、それを呼び出したスクリプトに制御が戻ります。ソース化された実行可能スクリプトは、この目的のためにreturnを使うかもしれません。
したがって、Cプログラミング言語に精通している人にとっては、ファイルを読み込むことは#include
ディレクティブに似た効果があります。
次のように、ソースとなるファイルに位置引数を渡すこともできます。
$ source $filename $arg1 arg2
Sourceを使用すると、変数や関数を別のファイルからスクリプトに渡して、それらを再度記述しなくても使用できます。
F.I:
#!/bin/bash
source /etc/environment
source /myscripts/jetty-common/config/jetty-functions.sh
乾杯