- У чому різниця між способами?
від 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.
Відмінності між двома способами немає.
Є лише одна примітка: eval
об'єднав усі свої аргументи, які потім запускаються як одна команда. source
читає вміст файлу та виконує їх. eval
може будувати команди лише зі своїх аргументів, ні stdin
. Тож не можна так робити:
printf "ls" | eval
Ваш приклад дає той самий результат, але призначення eval
та source
інше. source
зазвичай використовується для надання бібліотеки для інших сценаріїв, тоді eval
як використовується лише для оцінки команд. Вам слід уникати використання, eval
якщо це можливо, тому що немає гарантії, що рядок, що ухиляється, чистий; ми повинні зробити кілька перевірок санітарності, використовуючи subshell
замість цього.
- Якщо ми виконаємо деякі команди в () або {}, що є більш кращим?
Коли ви запускаєте команди послідовностей всередині фігурної дужки { }
, всі команди виконуються в поточній оболонці , а не в підзаголовок (що є випадком, якщо ви запускаєтеся в дужки (див. Посилання bash )).
Використання subshell ( )
використовує більше ресурсів, але ваше поточне середовище не впливає. Використання { }
виконує всі команди в поточній оболонці, тому впливає ваше оточення. Залежно від вашого призначення, ви можете вибрати одну з них.