vote up 0 vote down star

Hi,

My .bashrc looks something like this...

 export PERL5LIB="/tools/perl/Linux/${PLAT}/lib/perl5/5.10.0/${PLAT}-thread-multi"
 export PERL5LIB="${PERL5LIB}:/tools/perl/Linux/${PLAT}/lib/perl5/5.10.0"

 function dev {
   export PERL5LIB="/dev/tools/perl/Linux/${PLAT}/lib/perl5/5.10.0/${PLAT}-thread-multi"
   export PERL5LIB="${PERL5LIB}:/dev/tools/perl/Linux/${PLAT}/lib/perl5/5.10.0"
 }

The problem is that when I grep for PERL5LIB is see everything.

> env | grep PERL
PERL5LIB=/tools/perl/Linux/x86_64/lib/perl5/5.10.0/x86_64-thread-multi:/tools/perl/Linux/x86_64/lib/perl5/5.10.0
 export PERL5LIB="/dev/tools/perl/Linux/${PLAT}/lib/perl5/5.10.0/${PLAT}-thread-multi";
 export PERL5LIB="${PERL5LIB}:/dev/tools/perl/Linux/${PLAT}/lib/perl5/5.10.0";

So it's picking up the stuff inside of my "dev" function. Is there a way to hide the contents of a function? Or do I just need to get used to getenv.. Old habits are hard to break..

flag

Are you sure you're running "env" and not "set"? env only shows the environment, not bash functions. – camh Sep 7 at 4:48
Positive. I type it all the time! env | grep XYZ. The problem is my .bash_profile has grown and it's tough to parse. – rh0dium Sep 7 at 4:51
Glad you figured out what was going on -- would you mind explaining what the problem was somewhere? – Charles Duffy Sep 13 at 5:49

2 Answers

vote up 1 vote down check

Run type env at your bash prompt, and provide the output; for me, this indicates that env is /usr/bin/env, a separate executable; such executables have no way to know anything about functions or non-exported variables.

That said, without fixing the underlying problem (the likely cause being use of a bash built-in, function or alias in place of /usr/bin/env, which the output of the type command will show), there's a workaround available: env | grep '^PERL'; the carrot will emit only output starting at the beginning of a line, and function contents are indented in output of set (which appears to be running in place of env; again, type env should give a clue to the cause).

One point of clarification: set is a bash builtin which, when run with no arguments, dumps defined variables (environment or otherwise) and functions; when run with arguments, it has some other, completely different (and POSIX-specified) behaviors. env, as an external program, has no access to unexported variables or to functions defined within the shell that calls it.

(set is actually not bash-specific, but rather is specified by POSIX to dump all shell variables; its additional functionality of dumping function definitions is to my knowledge an extension beyond the letter of the standard).

link|flag
env is /usr/local/bin/env – rh0dium Sep 8 at 23:00
Can you explain your second comment WRT "output of set"? Thanks – rh0dium Sep 8 at 23:01
1  
...and that's output from type, not which? If what's being invoked truly is /usr/local/bin/env, it has no way of knowing what your defined shell functions are, and thus no way of dumping them. – Charles Duffy Sep 10 at 5:29
You led me to the answer! Thanks!! – rh0dium Sep 11 at 23:37
vote up 1 vote down

Try:

( set -o posix ; set )
link|flag
1  
I suppose you could have some fun with functions and aliases to have env always invoke that sequence when called without arguments -- but as I understand it, the goal here is to come up with a way for rh0dium to get the desired behavior without changing his habits (and thus the commandline he habitually pipes). – Charles Duffy Sep 7 at 17:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.