如何在shell脚本设置当前shell的环境变量

linux

Your shell process has a copy of the parent's environment and no access to the parent process's environment whatsoever. When your shell process terminates any changes you've made to its environment are lost. Sourcing a script file is the most commonly used method for configuring a shell environment, you may just want to bite the bullet and maintain one for each of the two flavors of shell.

以上是 如何在shell脚本设置当前shell的环境变量 的全部内容, 来源链接: utcz.com/z/507699.html

回到顶部