Tagged Questions
The env tag has no wiki summary.
12
votes
4answers
8k views
Python ENVIRONMENT variables
How to check/print Python environment variable values?
What would be 'installation-dependent directories' for Python 25 with Windows default
installation?
5
votes
3answers
98 views
%ENV doesn't work and I cannot use shared library
I cannot use %ENV var on my Perl script to use Oracle libs.
BEGIN {
$ORACLE_HOME = "/usr/lib/oracle/10.2.0.3/client64";
$LD_LIBRARY_PATH = "$ORACLE_HOME/lib";
$ORACLE_SID="prod";
...
5
votes
4answers
5k views
Setting environment variables for Phusion Passenger applications
I've set up Passenger in development (Mac OS X) and it works flawlessly. The only problem came later: now I have a custom GEM_HOME path and ImageMagick binaries installed in "/usr/local". I can put ...
4
votes
2answers
430 views
Python replacements for RVM/Bundler/Capistrano
I'm just moving over from Ruby/Rails development to Python/Django and i'm trying to find the best replacements for RVM/Bundler/Capistrano but it seems to be a total mess?
I've found these so far:
...
3
votes
5answers
584 views
Saving Perl Windows Environment Keys UPCASES them
I have a framework written in Perl that sets a bunch of environment variables to support interprocess (typically it is sub process) communication. We keep a sets of key/value pairs in XML-ish files. ...
2
votes
4answers
629 views
How to run “bundle exec” from a specific Ruby version using RVM when shell environment is not there
Ok I have a confession to make - I still run a massive FCGI setup (just alot of servers configured). I am trying to adapt it to rvm. In the fcgi settings I can specify the commandline command to ...
2
votes
1answer
98 views
#! /usr/bin/env and process names: portability at a price?
There are lots of good reasons to use #! /usr/bin/env. Bottom line: It makes your code more portable. Well, sorta. Check this out....
I have two nearly identical scripts, bintest.py
#! ...
2
votes
2answers
255 views
What's the difference of using #!/usr/bin/env or #!/bin/env in shebang?
Will there be any difference or it's just a personal choice?
2
votes
5answers
2k views
Rails saving IP address with every create/update request
I'd like to do the following:
define a before_filter in application.rb that extracts the user's IP address and stores it anywhere, preferably in the session.
define two before filters in all my ...
1
vote
1answer
28 views
passing env variables to fcgi (perl)
I have an apache 2 webserver running with mod_fcgid. CGI scripts are executed by passing some environment variables and then exec'ing a perl program, eg:
index.cgi:
#!/bin/sh
export TEST_VAR=test
...
1
vote
1answer
50 views
Best way to determine Flash context in AS3?
I want to know, if my Flashapplication is running in a browser or it is tested from within Flash authoring tool (local Flashplayer).
I came up with this one.
var isLocal:Boolean = ...
1
vote
3answers
974 views
CoffeeScript in a shell script — run by Apache (as CGI)
Following the advice here I can get a shell script in JavaScript that runs under node.js and prints a bit of hello world html:
test.cgi
-------
#!/usr/local/bin/node
console.log("Content-Type: ...
1
vote
1answer
88 views
sudo has different environments, why?
I realize that:
sudo -i
env
is different from:
sudo -i
sudo env
They are both sudo, why are they different?
In my case, I realize the PATHs are very different, so sometimes things can't run ...
1
vote
1answer
210 views
Insecure $ENV{ENV} while running with -T switch
When I try the last example from
perlfaq5: How-do-I-count-the-number-of-lines-in-a-file? I get an error-message.
What should I do to get the script working?
#!/usr/local/bin/perl -T
use warnings;
...
1
vote
1answer
601 views
when we need use sudo python xxx.py or just python xxx.py or xxx.py
I have write a website,what confused me is when i run the website,first i need start the the app,
so there are 3 ways:
sudo python xxx.py
python xxx.py
xxx.py
I didn't clear with how to use each ...
0
votes
1answer
42 views
What's the best way to get the hostname from the env hash in a Rails app?
I'm writing an OmniAuth dynamic provider and in the callback I need to get the current hostname (the app works in several different hostnames). I don't have the request object, just a big env hash. I ...
0
votes
1answer
78 views
.htaccess test if ENV is true or defined
I need to run a set of RewriteCond statements if an ENV is true or defined (if not defined, then presumed false). I've been trying to use:
RewriteCond %{ENV:IS_MOBILE} ^true$
RewriteCond ...
and ...
0
votes
3answers
588 views
Installing Gems without rvm, as root, with explicit version of ruby
I've decided to get rid of rvm, and I'm having trouble compiling a gem with my new version of ruby 1.9.2. The gem requires 1.9.2, I have it, yet says it can't install without, so the error messages ...
0
votes
1answer
207 views
How to pass all bash env variables to cron
A given crontab entry gives errors and the reason is that it can not read all env variables from bash. I wonder how could I pass all this info to cron
0
votes
2answers
306 views
rails 3, how use an ENV config vars in a Settings.yml file?
In my settings.yml file I have several config vars, some of which reference ENV[] variables.
for example I have ENV['FOOVAR'] equals WIDGET
I thought I could reference ENV vars inside <% %> like ...
0
votes
3answers
381 views
bash: set environment variable out of find's exec
I would like to find all directories in the current working directory and its subdirectories, that are either the root of a git repository, or not tracked by git at all.
To do so I wrote this bash ...
0
votes
2answers
2k views
NGINX and environment variables from configuration file
I'm trying to set some environment variables to nginx via it's configuration file. I'm using nginx/0.8.53 and it's not working.
server {
listen 80;
server_name localdictus;
root ...
0
votes
0answers
791 views
Jetty jndi env javax.naming.NameNotFoundException
Hi I'm trying to migrate from Tomcat to Jetty. We have environment setting in jndi that i can't seem to get to work as a deployed app, even though the maven jetty plugin works.
ERROR:
Invocation of ...
0
votes
1answer
198 views
Csh run script config file, and variables
I am fairly inexperienced with shell(csh in this case) scripts but was asked to edit one. I was asked to add a config file to make it much simpler to edit several specific variables. I thought this ...
0
votes
5answers
282 views
Looking to get the env vars of a PID in BASH for a BASH script
Any way to do this?
I have a script that exports a few vars and runs a component.
I'm looking to find out the actual values of some of these vars while the process is running. (Which applies here, ...
-1
votes
4answers
939 views
setting/reading up environment variables in Python [closed]
Possible Duplicate:
How to set environmental variables in Python
I have a python script which again call lot other python functions and also shell scripts. I want to set a environment ...