码迷,mamicode.com
首页 > 编程语言 > 详细

C语言 Linux环境变量

时间:2014-08-12 16:29:34      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   io   for   2014   ar   

/*
*@author cody
*@date 2014-08-12
*@description 
*/

/*
extern char **environ  //environment values

#include <stdlib.h>
char *getenv(const char *name);
int setenv(const char *name,const char *value,int rewrite); // set enviroment if exists rewrite - 0 do  not rewrite not 0 rewrite
void unsetenv(const char *name); //delete env by name
*/

#include <stdio.h>
#include <stdlib.h>

void environment(){
    extern char **environ;
    int i;
    for(i = 0;environ[i] != NULL;i ++){
        printf("%s\n",environ[i] );
    }
}

void getPath(){

    char *path = getenv("PATH");
    printf("PATH = %s\n",path );

    setenv("PATH","HELLO",1);
    path = getenv("PATH");
    printf("PATH = %s\n",path );


}

int main(int argc, char const *argv[])
{
    
    //environment();
    getPath();
    return 0;
}

 

C语言 Linux环境变量,布布扣,bubuko.com

C语言 Linux环境变量

标签:des   style   blog   color   io   for   2014   ar   

原文地址:http://www.cnblogs.com/cody1988/p/3907257.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!