shell脚本中导出路径有什么意义?

发布于 2024-12-21 03:27:56 字数 160 浏览 0 评论 0原文

我在 shell 脚本中看到了下面两行。 我是 unix 脚本新手,设置这个有什么用?

PATH=$PATH:/bin:/usr/bin:/usr/sbin:/sbin:/etc:/usr/ucb:/usr/ccs/bin:/usr/local/bin 导出路径

提前致谢

I have seen below two lines in a shell script.
Im new to unix scripting, what is the use of setting this?

PATH=$PATH:/bin:/usr/bin:/usr/sbin:/sbin:/etc:/usr/ucb:/usr/ccs/bin:/usr/local/bin
export PATH

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝梦月影 2024-12-28 03:27:56

如果您导出某些内容(无论如何,在bash中,我认为这是您的shell),它将标记该内容在后续执行的命令中可用。

$ FOO=1 # Set the variable
$ echo $FOO # Check the value
1
$ bash # New shell here. 

$ echo $FOO # No value since it's not exported

$ exit # Quit the subshell
$ export FOO # Export it
$ bash
$ echo $FOO # It has a value now
1

export 是 bash 的内置 shell,因此执行 help export 将为您提供更多信息。

If you export something (in bash anyway which I assume is your shell), it will mark that something to be available in subsequently executed commands.

$ FOO=1 # Set the variable
$ echo $FOO # Check the value
1
$ bash # New shell here. 

$ echo $FOO # No value since it's not exported

$ exit # Quit the subshell
$ export FOO # Export it
$ bash
$ echo $FOO # It has a value now
1

export is a shell builtin for bash so doing a help export will give you more information on it.

独木成林 2024-12-28 03:27:56

显式导出 PATH 不会造成损害,但通常不会有任何效果,因为当您启动 shell 脚本时,几乎可以肯定 PATH 变量已经被标记为导出。

Explicitly exporting the PATH doesn't hurt but generally has no effect as the PATH variable is almost certainly already marked as exported when you launch a shell script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文