mirror of
https://github.com/nushell/nushell
synced 2024-11-15 01:17:07 +00:00
bff81f24aa
* Autogenerate missing docs * Update ansi.md * Rename question mark command docs * Delete empty?.md
754 B
754 B
with-env
Runs a block with an environment variable set.
Usage
> with-env <variable> <block> {flags}
Parameters
<variable>
the environment variable to temporarily set<block>
the block to run once the variable is set
Flags
- -h, --help: Display this help message
Examples
Set the MYENV environment variable
> with-env [MYENV "my env value"] { echo $nu.env.MYENV }
Set by primitive value list
> with-env [X Y W Z] { echo $nu.env.X $nu.env.W }
Set by single row table
> with-env [[X W]; [Y Z]] { echo $nu.env.X $nu.env.W }
Set by row(e.g. open x.json
or from json
)
> echo '{"X":"Y","W":"Z"}'|from json|with-env $it { echo $nu.env.X $nu.env.W }