O que o comando de exportação deve fazer no Linux?

8

O que o comando de exportação deve fazer no Linux?

    
por benstpierre 19.03.2010 / 21:44

3 respostas

6

Aqui está um exemplo para demonstrar o comportamento.

$ # 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'

Você notará que, sem export , o novo processo bash que você criou não conseguiu ver testvar . Quando testvar foi exportado, o novo processo conseguiu ver testvar .

    
por 19.03.2010 / 22:05
8

Exportar uma variável de shell como variável de ambiente.

    
por 19.03.2010 / 21:47
1

Consulte este tutorial de Bash por exemplo da IBM. Inclusive inclui um exemplo do uso de export .

    
por 19.03.2010 / 22:19