По-перше, я боюся, що пояснення -o
варіанту, поданого http://explainshell.com , не зовсім коректне.
Враховуючи, що set
це команда bulit-in, ми можемо побачити її документацію help
, виконавши help set
:
-o option-name
Set the variable corresponding to option-name:
allexport same as -a
braceexpand same as -B
emacs use an emacs-style line editing interface
errexit same as -e
errtrace same as -E
functrace same as -T
hashall same as -h
histexpand same as -H
history enable command history
ignoreeof the shell will not exit upon reading EOF
interactive-comments
allow comments to appear in interactive commands
keyword same as -k
monitor same as -m
noclobber same as -C
noexec same as -n
noglob same as -f
nolog currently accepted but ignored
notify same as -b
nounset same as -u
onecmd same as -t
physical same as -P
pipefail the return value of a pipeline is the status of
the last command to exit with a non-zero status,
or zero if no command exited with a non-zero status
posix change the behavior of bash where the default
operation differs from the Posix standard to
match the standard
privileged same as -p
verbose same as -v
vi use a vi-style line editing interface
xtrace same as -x
Як бачите, -o pipefail
значить:
повернене значення конвеєра - це стан останньої команди для виходу з ненульовим статусом, або нульовим, якщо жодна команда не вийшла з ненульовим статусом
Але це не говорить: Write the current settings of the options to standard output in an unspecified format.
Тепер -x
використовується для налагодження, як ви вже це знаєте, і -e
припинить виконання після першої помилки в сценарії. Розглянемо такий сценарій:
#!/usr/bin/env bash
set -euxo pipefail
echo hi
non-existent-command
echo bye
echo bye
Лінія ніколи не буде виконуватися , коли -e
використовується , тому що
non-existent-command
не повертає 0:
+ echo hi
hi
+ non-existent-command
./setx.sh: line 5: non-existent-command: command not found
Без -e
останнього рядка було б надруковано, оскільки, хоча сталася помилка, ми не сказали Bash
автоматично вийти:
+ echo hi
hi
+ non-existent-command
./setx.sh: line 5: non-existent-command: command not found
+ echo bye
bye
set -e
часто ставиться у верхній частині сценарію, щоб переконатися, що скрипт буде зупинений при першій помилці - наприклад, якщо завантаження файлу не вдалося, витягувати його не має сенсу.
set -uxo pipefail
).