Tagged Questions

Environment variables are a set of dynamic named values that can affect the way running processes will behave on a computer.

learn more… | top users | synonyms

118
votes
14answers
88k views

Setting environment variables in OS X?

What is the proper way to modify environment variables like PATH in OS X? I've looked on google a little bit and found 3 different files to edit: /etc/paths ~/.profile ~/.tcshrc I don't even have ...
40
votes
4answers
49k views

How to add a default include path for gcc in linux?

I'd like gcc to include files from $HOME/include in addition to the usual include directories, but there doesn't seem to be an analogue to $LD_LIBRARY_PATH. I know I can just add the include directory ...
37
votes
7answers
34k views

Is there a command to refresh environment variables from the command prompt in Windows?

If I modify or add an environment variable I have to restart the command prompt (minor inconvenience). Is there a command I could execute that would do this without restarting CMD?
29
votes
1answer
2k views

Capabilities for Lua: what experience is there?

There's been some discussion on the cap-talk mailing list around whether Lua and Javascript support the object-capability model, with the conclusion that because of support for restricting the ...
29
votes
2answers
32k views

How do I get and set Environment variables in C#?

How can I get Environnment variables and if something is missing, set the value?
27
votes
6answers
46k views

How do I set environment variables from Java?

How do I set environment variables from Java? I see that I can do this for subprocesses using ProcessBuilder. I have several subprocesses to start, though, so I'd rather modify the current process's ...
21
votes
1answer
4k views

How to read environment variable in node.js

Is there any way I can read environment variables in node.js code? Like for example python's os.environ['HOME']
21
votes
4answers
3k views

What determines the return value of Path.GetTempPath()?

Currently, I use Path.GetTempPath() to figure out where to write my log files, but recently I came across a user's machine where the path returned was not what I expected. Usually, the returned path ...
15
votes
4answers
11k views

Accessing Environment Variables In C++

I'd like to have access to the $HOME environment variable in a C++ program that I'm writing. If I were writing code in C, I'd just use the getenv() function, but I was wondering if there was a better ...
14
votes
6answers
17k views

Environment variables in Mac OS X

Update: The link below does not have a complete answer. Having to set the path or variable in two places (one for GUI and one for shell) is lame. Not Duplicate of: ...
14
votes
10answers
3k views

Is there a way to change another process's environment variables?

On Unix, is there any way that one process can change another's environment variables (assuming they're all being run by the same user)? A general solution would be best, but if not, what about the ...
13
votes
1answer
7k views

Where are environment variables stored in registry?

I need to access an environment variable remotely. To do this I think the best way is to read it from registry. Where are environment variables stored in registry?
13
votes
3answers
17k views

Using system environment variables in log4j xml configuration

Is it possible to reference system environment variables (as opposed to Java system properties) in a log4j xml configuration file? I'd like to be able to do something like: <level ...
12
votes
3answers
9k views

define ant property from environment with default value

I would like my build script to act properly for release and development environments. For this I would like to define a property in ant, call it (e.g.) fileTargetName fileTargetName will get it's ...
11
votes
1answer
778 views

Using environment variable in a file path

I've got an environment variable set that points to a specific folder (call it MYFOLDER for example). When typing in %MYFOLDER%\SubFolder into windows explorer the subfolder appears. However, when I ...
11
votes
1answer
3k views

How do I modify the PATH environment variable when running an Inno Setup Installer?

Inno Setup lets you set environment variables via the [Registry] sections (by setting registry key corresponding to environment variable) However, sometimes you dont just wanna set an environment ...
11
votes
5answers
13k views

Set environment variable in Ubuntu

In Ubuntu, I'd like to switch my JAVA_HOME environment variable back and forth between Java 5 and 6. I open a terminal and type in the following to set the JAVA_HOME environment variable: export ...
11
votes
1answer
6k views

Where can I set environment variables that crontab will use?

hey all, I have a crontab running every hour... The user running it has evironment vars in the .bash_profile that work when the user runs the job from the terminal. However, obviously these don't get ...
11
votes
3answers
4k views

Environment variable to force .NET applications to run as 32bit

I've been told there is an environment variable you can set to force .NET applications to run as 32bit applications on x64 versions of Windows. Do you know what it is, or know of a reference on it? ...
11
votes
3answers
7k views

How to specify common application data folder for log4net?

I want log4net to write log files (using RollingFileAppender) to a subfolder of the common application data folder (e.g. C:\Documents and Settings\All Users\Application Data\Company\Product\Logs). ...
10
votes
2answers
3k views

How do I find fully qualified hostname of my machine in C#?

Ex : I want something like abc.hyd.mycompany.com. My requirement is to parse this name and initialize appropriate service. use System.net; Dns.GetHostName() doesn't return fully qualified name it ...
9
votes
5answers
554 views

GetEnvironmentVariable() and SetEnvironmentVariable() for PATH Variable

I want to extend the current PATH variable with a C# program. Here I have several problems: Using GetEnvironmentVariable("PATH", EnvironmentVariableTarget.Machine) replaces the placeholders (i.e. ...
8
votes
4answers
7k views

Set environment variables on Mac OS X Lion

I apologize if this seems like a question that has been asked a lot before, but please hear me out... :-) I have been Googling like crazy for answers, and although I found many, all seem to presuppose ...
8
votes
2answers
167 views

Argument passing strategy - environment variables vs. command line

Most of the applications we developers write need to be externally parametrized at startup. We pass file paths, pipe names, TCP/IP addresses etc. So far I've been using command line to pass these to ...
8
votes
4answers
1k views

Java -classpath option

Will the use of -classpath option with java, add to or replace the contents of the CLASSPATH env variable?
8
votes
5answers
6k views

Why can't environmental variables set in python persist?

I was hoping to write a python script to create some appropriate environmental variables by running the script in whatever directory I'll be executing some simulation code, and I've read that I can't ...
8
votes
6answers
18k views

Linux: where are environment variables stored?

If I type into a terminal, export DISPLAY=:0.0 ... where is the shell storing that environment variable? I'm using Ubuntu 8.10. I've looked in the files ~/.profile and /etc/profile and can find no ...
8
votes
4answers
13k views

Read environment variables from file in Windows Batch (cmd.exe)

I'm trying to read variables from a batch file for later use in the batch script, which is a Java launcher. I'd ideally like to have the same format for the settings file on all platforms (Unix, ...
7
votes
5answers
30k views

How to set user environment variables in Windows Server 2008 R2 as a normal user?

In older versions of Windows, it was just open the Control Panel, select the System applet, select the Advanced tab, and then hit the Environment variables button. As a normal user, you could edit ...
7
votes
1answer
1k views

Erlang: How to access CLI flags (arguments) as application environment variables?

How does one access command line flag (arguments) as environment variables in Erlang. (As flags, not ARGV) For example: RabbitMQ cli looks something like: erl \ ... -sasl errlog_type error \ -sasl ...
6
votes
1answer
99 views

Is there an equivalent to Python's expandvars in C?

I have a string stored in a file that is read into a string. I wish to replace variables defined in *nix shell format with the corresponding environment values. For example, an environment variable ...
6
votes
1answer
285 views

How can you use a Chef recipe to set an environment variable?

How can you use a Chef recipe to set an environment variable? I need to set an environment variable using a chef recipe. Can you provide an example of how to accomplish this?
6
votes
1answer
167 views

NSTask and Git — Permissions issues

In my Cocoa application I'm trying to use NSTask to run some basic Git commands. Whenever I run a command that requires permissions (SSH keys) to access a remote (e.g. git push, git pull), it fails ...
6
votes
6answers
1k views

Expand environment variable for My Documents

I know I can read environment variables like this: Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); However, it would be really helpful to me if I could do something like this: ...
6
votes
2answers
2k views

Programmatically adding a directory to Windows PATH environment variable

I'm writing a Win32 DLL with a function that adds a directory to the Windows PATH environment variable (to be used in an installer). Looking at the environment variables in Regedit or the Control ...
6
votes
4answers
3k views

Changing web.config file based on an Environment Variable in ASP.NET

I need to change my connection string in the web.config file based on an environment variable (for different enviornments, like dev/staging/production, etc). I have seen other solutions that use ...
6
votes
5answers
2k views

Interface for modifying Windows environment variables from Python

How can I persistently modify the Windows environment variables from a Python script? (it's the setup.py script) I'm looking for a standard function or module to use for this. I'm already familiar ...
6
votes
5answers
426 views

How can I catch changes to %ENV?

I have a bunch of scripts that run tool flows. Like a Makefile does but in Perl. As part of those flows, the Perl scripts set environment vars and it's not always easy to know when they happen and ...
6
votes
1answer
6k views

Why is the Powershell Environment PATH different to the System Environment PATH?

I'm having this weird situation : My user's and system's PATH variable is different than the PATH in powershell. When I do : PS C:\$env:path C:\Windows\System32\WindowsPowerShell\v1.0\;c:\oldpath ...
6
votes
9answers
1k views

How do I make environment variable changes stick in Python?

From what I've read, any changes to the environment variables in a Python instance are only available within that instance, and disappear once the instance is closed. Is there any way to make them ...
6
votes
6answers
2k views

How can I modify my cygwin environment to use Strawberry Perl instead of the packaged Perl distribution?

I currently use Strawberry Perl as my primary Perl distribution. However, I have some applications that make Perl calls through cygwin. These generally fail because they are calling the version of ...
6
votes
7answers
7k views

Remove quotes from named environement variables in Windows scripts

I want to store a URL prefix in an Windows environment variable. The ampersands in the query string makes this troublesome though. For example: I have a URL prefix of ...
6
votes
1answer
1k views

How to set the PYTHONPATH in Emacs?

Emacs does not recognize my correct python path. I think it is a general problem with emacs not recognizing my environment variables. I have GNU Emacs 22.1.1 (i386-apple-darwin8.9.1, Carbon Version ...
6
votes
5answers
15k views

Environment Variables in Python on Linux

Python's access to environment variables does not accurately reflect the operating system's view of the processes environment. os.getenv and os.environ do not function as expected in particular ...
5
votes
3answers
73 views

What syntax will check if a variable name containing spaces is defined?

Windows user defined environment variable names can contain any character except =. Special characters can be included by escaping them. A simpler method is to simply enclose the entire SET ...
5
votes
1answer
205 views

Capistrano: Can I set an environment variable for the whole cap session?

I've got a staging server with both standard Ruby and Ruby Enterprise installed. As standard Ruby refuses to install a critical gem, I need to set $PATH so that ruby/gem/rake/etc. always refer to the ...
5
votes
4answers
126 views

What corner cases must we consider when parsing $PATH on Linux?

I'm working on a C application that has to walk $PATH to find full pathnames for binaries, and the only allowed dependency is glibc (i.e. no calling external programs like which). In the normal case, ...
5
votes
2answers
1k views

Canonical list of Xcode Environment Variables

Is there a Canonical list of Xcode Environment Variables that can be used in Build Rules etc?
5
votes
5answers
397 views

Why I can't print out environment variables in gdb?

#include <unistd.h> #include <stdio.h> extern char **environ; int main(int argc, char *argv[]) { int i = 0; while(environ[i]) { printf("%s\n", environ[i++]); } return 0; } ...
5
votes
5answers
4k views

jenkins / hudson environment variables

i am running jenkins from user jenkins thats has $PATH set to something and when i go into jenkins web interface, in the System Properties window i see different $PATH. I have installed jenkins on ...

1 2 3 4 5 18