我有一个 C 程序,它打印每个环境变量,其名称由标准输入给出。它打印 $PATH、$USER 等变量,但看不到我在 Linux shell 中定义的环境变量...例如,在 ~.bashrc 中我导出了 MYTEST=test_is_working,然后我获取了 bashrc(来源〜/ .bashrc)。我希望程序使用 getenv 返回 test_is_working,但事实并非如此。
#include <QCoreApplication>
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
char* my_env= getenv("MYTEST");
if(my_env!=NULL){
printf("my env is : %s \n", my_env);
}
else {
printf("can't find env \n");
}
return a.exec();
}
它返回:找不到环境
而当我打开终端并输入“env”时,我有 MYTEST=test_is_working
我看到了一个类似的帖子: Using getenv function where the solution is to launch the program from the shell。但我不能,因为我正在 Qtcreator 中运行和调试。
我不知道我在哪里错了,有人可以解释一下吗?
谢谢