什么是Linux中的导出命令?

什么是Linux中的导出命令?,第1张

概述什么是 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.$bas 什么是 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'

您会注意到,如果没有导出,您创建的新bash进程将无法看到testvar.导出testvar时,新进程能够测试var.

总结

以上是内存溢出为你收集整理的什么是Linux中的导出命令?全部内容,希望文章能够帮你解决什么是Linux中的导出命令?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1043957.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存