Linuxで行うはずのexportコマンドとは何ですか?


回答:


8

これは動作を示す例です。

$ # 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のプロセスを参照することができませんでしたtestvartestvarがエクスポートされたとき、新しいプロセスはを見ることができましたtestvar



1

IBMのチュートリアルによるこのBashのチュートリアルを参照してください。の使用例も含まれていますexport

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.