- Jaka jest różnica między sposobami?
z 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.
Nie ma różnic między tymi dwoma sposobami.
Jest tylko jedna uwaga: eval
łączy wszystkie argumenty, które są następnie uruchamiane jako pojedyncze polecenie. source
odczytuje zawartość pliku i wykonuje je. eval
może budować polecenia tylko na podstawie swoich argumentów, a nie stdin
. Więc nie możesz tego zrobić:
printf "ls" | eval
- Który jest bardziej preferowany?
Twój przykład zapewnia ten sam wynik, ale cel eval
i source
jest inny. source
jest zwykle używany do udostępniania biblioteki dla innych skryptów, natomiast eval
służy wyłącznie do oceny poleceń. Jeśli eval
to możliwe, należy unikać używania , ponieważ nie ma gwarancji, że ewaluowany ciąg jest czysty; subshell
zamiast tego musimy przeprowadzić kontrolę poczytalności .
- Jeśli uruchomimy niektóre polecenia w () lub {}, co jest bardziej preferowane?
Kiedy uruchamiasz polecenia sekwencji w nawiasach klamrowych { }
, wszystkie polecenia są uruchamiane w bieżącej powłoce , a nie w podpowłoce (tak jest w przypadku uruchamiania w nawiasach (patrz odniesienie do bash )).
Korzystanie subshell ( )
zużywa więcej zasobów, ale nie wpływa to na bieżące środowisko. Użycie { }
uruchamia wszystkie polecenia w bieżącej powłoce, więc wpływa to na środowisko. W zależności od celu możesz wybrać jeden z nich.