zsh-users
 help / color / mirror / code / Atom feed
* environment variables
@ 2010-08-31 15:54 Joke de Buhr
  0 siblings, 0 replies; only message in thread
From: Joke de Buhr @ 2010-08-31 15:54 UTC (permalink / raw)
  To: zsh-users

[-- Attachment #1: Type: Text/Plain, Size: 1138 bytes --]

I'm not sure but I think the following behavior is kind of inconsistent. 
Setting the environment works different on functions and program.

Case 1 and 2 export a variable before calling the env program. In case 2 
copying the assignment of HELLO works as expected. Case 3 and 4 export a 
variable before calling a function which calls the env program. In case 4 
copying the the assignment of HELLO doesn't work because HELLO is assigned to 
$HELLO but assigning HELLO to $WORLD (case 3) works.

Any reason why zsh behaves this way? Bash doesn't have this strange behavior. 



## 1: export to command (different variable)
$ WORLD=world
$ HELLO=$WORLD env | grep '^HELLO'
    HELLO=world

## 2: export to command (same variable)
$ HELLO=world
$ HELLO=$HELLO env | grep '^HELLO'
    HELLO=world


## 3: HELLO exported to shell function, same behavior as 1
$ call() { env | grep '^HELLO' }
$ WORLD=world
$ HELLO=$WORLD call
    HELLO=world

## 4: HELLO not exported to shell function, different from 2 and 3
$ call() { env | grep '^HELLO' }
$ HELLO=world
$ HELLO=$HELLO call
    HELLO=      ## <-- empty

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 706 bytes --]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-08-31 16:25 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-31 15:54 environment variables Joke de Buhr

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).