- ¿Cuál es la diferencia entre las formas?
de 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.
No hay diferencias entre las dos formas.
Solo hay una nota: eval
concatena todos sus argumentos, que luego se ejecutan como un solo comando. source
lee el contenido de un archivo y los ejecuta. eval
solo puede construir comandos a partir de sus argumentos, no stdin
. Entonces no puedes hacer así:
printf "ls" | eval
Su ejemplo proporciona el mismo resultado, pero el propósito de eval
y source
es diferente. source
generalmente se usa para proporcionar una biblioteca para otros scripts, mientras eval
que solo se usa para evaluar comandos. Debe evitar el uso eval
si es posible, porque no hay garantía de que la cuerda evadida esté limpia; debemos hacer algunos controles de cordura, utilizando en su subshell
lugar.
- Si ejecutamos algunos comandos en () o {}, ¿cuál es más preferido?
Cuando ejecuta comandos de secuencias dentro de llaves { }
, todos los comandos se ejecutan en el shell actual , en lugar de un subshell (que es el caso si se ejecuta entre paréntesis (ver referencia de bash )).
El uso subshell ( )
utiliza más recursos, pero su entorno actual no se ve afectado. El uso { }
ejecuta todos los comandos en el shell actual, por lo que su entorno se ve afectado. Dependiendo de su propósito, puede elegir uno de ellos.