22

As I know, newly running shell script inherits it's environment variables. Is there a way to block this? (running shell without variable inheriting)

2 Answers 2

28

It seems you can prefix your script with env -i which will clear the environment before running the script:

env -i sh test.sh 

From man env:

-i, --ignore-environment start with an empty environment 

Not sure why you would want to do this though...

4
  • Thanks. This worked! I need this for calling build script in IDE without influencing IDE's configuration environmental variables. But still far away to goal. This may help your curiousness! Commented Sep 1, 2010 at 14:24
  • 1
    To add another use case: I am currently evaluating fish and zsh as an alternative to bash. But I'm not quite ready to promote the candidate shell as my login shell (as in chsh .... If I just open a terminal window and run zsh or fish (with or without -l doesn't matter) it pollutes my environment with all kinds of variables from the shell I started it. Doing the trick with env -c solves this problem for me. I do env -i TERM=xterm-256color $(which fish). Commented Feb 22, 2012 at 19:33
  • 2
    This is useful if you have a cron task which is failing because the environment is not properly configured and you need to test it; also a good way to test if your scripts make assumptions about environment settings. Thanks! Commented Aug 22, 2013 at 4:21
  • 2
    Another possible place this could be useful is testing some periodic jobs (such as cron jobs) to ensure there are no environmental dependencies on the script. Same thing with commands that would be run in an "Exec" resource in a puppet manifest. Commented Dec 16, 2014 at 5:58
3

One possibility (although it looks rather ugly):

exec -c $SCRIPT will start $SCRIPT with an empty environment. (see man bash search for exec \[-cl\]).

1
  • 1
    This worked almost equally with env -i, however, I choose to use env -i because exec stops executing rest of script. Commented Sep 1, 2010 at 15:26

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.