Is there anyway to set environment variables in linux using C? I tried setenv() and putenv(), but they don't seem to be working for me.
Thanks in advance.
feedback
|
|
I'm going to make a wild guess here, but the normal reason that these functions appear to not work is not because they don't work, but because the user doesn't really understand how environment variables work. For example, if I have this program:
And then I run it from the shell, it won't modify the shell's environment - there's no way for a child process to do that. That's why the shell commands that modify the environment are builtins, and why you need to | |||||||||||||
feedback
|
|
The environment variable set by setenv()/putenv() will be set for the process that executed these functions and will be inherited by the processes launched by it. However, it will not be broadcasted into the shell that executed your program. http://stackoverflow.com/questions/662466/why-isnt-my-wrapper-around-setenv-working/662486#662486 | |||
|
feedback
|
|
The environment block is process-local, and copied to child processes. So if you change variables, the new value only affects your process and child processes spawned after the change. Assuredly it will not change the shell you launched from. | |||
|
feedback
|
|
I got it from my "Advanced Programming in the UNIX Environment" Book The environment list the array of pointers to the actual name=value strings and the environment strings are typically stored at the top of a process's memory space, above the stack. Deleting a string is simple; we simply find the pointer in the environment list and move all subsequent pointers down one. But adding a string or modifying an existing string is more difficult. The space at the top of the stack cannot be expanded, because it is often at the top of the address space of the process and so can't expand upward; it can't be expanded downward, because all the stack frames below it can't be moved.
All the best. | |||||
feedback
|
|
Any unix program runs in a separate process from the process which starts it; this is a 'child' process. When a program is started up -- be that at the command line or any other way -- the system creates a new process which is (more-or-less) a copy of the parent process. That copy includes the environment variables in the parent process, and this is the mechanism by which the child process 'inherits' the environment variables of its parent. (this is all largely what other answers here have said) That is, a process only ever sets its own environment variables. Others have mentioned sourcing a shell script, as a way of setting environment variables in the current process, but if you need to set variables in the current (shell) process programmatically, then there is a slightly indirect way that it's possible. Consider this:
The built-in | |||
feedback
|