如何将环境变量传递给bash脚本中的二进制程序?

时间:2017-10-05 01:06:23

标签: bash environment-variables

我有一个bash脚本的以下片段:

#!/bin/bash
... # commands
export var=3
./a.out # : execute a binary program using the environment variable "var"
... # commands

程序a.out需要SHELL环境变量var的值。您能否帮我解释如何定义var以使a.out能够使用其值?命令export var=3不起作用。

0 个答案:

没有答案