mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 00:43:33 +01:00
679 B
679 B
title | layout | version |
---|---|---|
with-env | command | 0.59.1 |
Runs a block with an environment variable set.
Signature
> with-env (variable) (block)
Parameters
variable
: the environment variable to temporarily setblock
: the block to run once the variable is set
Examples
Set the MYENV environment variable
> with-env [MYENV "my env value"] { $env.MYENV }
Set by primitive value list
> with-env [X Y W Z] { $env.X }
Set by single row table
> with-env [[X W]; [Y Z]] { $env.W }
Set by row(e.g. open x.json
or from json
)
> echo '{"X":"Y","W":"Z"}'|from json|with-env $in { echo $env.X $env.W }