Linux에서 export 명령은 무엇을해야합니까?
답변
다음은 동작을 보여주는 예입니다.
$ # 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
새로운 bash 프로세스 없이는 볼 수 없었습니다 testvar
. 때 testvar
보낸, 새로운 프로세스를 볼 수 있었다 testvar
.