Що команда експорту повинна робити в Linux?
Що команда експорту повинна робити в Linux?
Відповіді:
Ось приклад для демонстрації поведінки.
$ # set testvar to be a value
$ testvar=asdf
$ # demonstrate that it is set in the current shell
$ echo $testvar
$ # create a bash subprocess and examine the environment.
$ bash -c "export | grep 'testvar'"
$ bash -c 'echo $testvar'
$ # export testvar and set it to the a value of foo
$ export testvar=foo
$ # create a bash subprocess and examine the environment.
$ bash -c "export | grep 'testvar'"
declare -x testvar="foo"
$ bash -c 'echo $testvar'
foo
$ # mark testvar to not be exported
$ export -n testvar
$ bash -c "export | grep 'testvar'"
$ bash -c 'echo $testvar'
Ви помітите, що без export
створеного вами нового баш-процесу ви не побачили testvar
. Коли testvar
було експортовано, новий процес вдалося побачити testvar
.
Експортуйте змінну оболонки як змінну середовища.
man
сторінку? ss64.com/bash/export.html
Перегляньте цей Bash на прикладі підручника від IBM. Він навіть включає приклад використання export
.