からbash manpage
:
eval [arg ...]
The args are read and concatenated together into a single com‐
mand. This command is then read and executed by the shell, and
its exit status is returned as the value of eval. If there are
no args, or only null arguments, eval returns 0.
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.
2つの方法に違いはありません。
eval
注が1つだけあります。すべての引数を連結し、単一のコマンドとして実行されます。source
ファイルの内容を読み取り、実行します。eval
引数ではなくコマンドのみを構築できますstdin
。そのため、次のようにすることはできません。
printf "ls" | eval
例では同じ結果が得られますが、目的eval
と目的source
は異なります。source
通常、他のスクリプト用のライブラリを提供するためにeval
使用されますが、コマンドの評価にのみ使用されます。評価eval
された文字列がクリーンであるという保証はないため、可能な限り使用しないでください。subshell
代わりにいくつかの健全性チェックを行う必要があります。
- ()または{}でいくつかのコマンドを実行する場合、どちらがより望ましいですか?
中括弧内でシーケンスコマンドを実行すると{ }
、すべてのコマンドはサブシェルではなく現在のシェルで実行されます(括弧内で実行する場合です(bash リファレンスを参照)。
を使用subshell ( )
するとより多くのリソースが使用されますが、現在の環境は影響を受けません。を使用{ }
すると、現在のシェルですべてのコマンドが実行されるため、環境が影響を受けます。目的に応じて、いずれかを選択できます。