我可以在不source脚本的情况下将变量从Bash脚本导出到环境中吗

December 17, 2023
测试
测试
测试
测试
3 分钟阅读

问:

假设我有这个脚本:

export.bash

#! /usr/bin/env bash
export VAR="HELLO, VAR"

当我执行脚本并尝试访问 $VAR 时,我没有得到任何值!

echo $VAR

有没有一种方法可以通过只执行 export.bash 而不 source 它获取 $VAR?

答:

不可以。

但是有几种可能的解决办法。

最明显的方法,你已经提到过,是使用 source 或 . 在调用 shell 的上下文中执行脚本:

$ cat set-vars1.sh 
export FOO=BAR
$ . set-vars1.sh 
$ echo $FOO
BAR

另一种方法是在脚本中打印设置环境变量的命令,而不是设置环境变量:

$ cat set-vars2.sh
#!/bin/bash
echo export FOO=BAR
$ eval "$(./set-vars2.sh)"
$ echo "$FOO"
BAR

在终端上执行 help export 可以查看 Bash 内置命令 export 的帮助文档:

# help export
export: export [-fn] [name[=value] ...] or export -p
    Set export attribute for shell variables.

    Marks each NAME for automatic export to the environment of subsequently
    executed commands.  If VALUE is supplied, assign VALUE before exporting.

    Options:
      -f  refer to shell functions
      -n  remove the export property from each NAME
      -p  display a list of all exported variables and functions

    An argument of `--' disables further option processing.

    Exit Status:
    Returns success unless an invalid option is given or NAME is invalid.
  • -f 指 shell 函数
  • -n 从每个(变量)名称中删除 export 属性
  • -p 显示所有导出变量和函数的列表

参考:

  • stackoverflow question 16618071
  • help eval

相关阅读:

  • 用和不用export定义变量的区别
  • 在shell编程中$(cmd) 和 `cmd` 之间有什么区别

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多