1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/env.md

29 lines
746 B
Markdown
Raw Normal View History

2014-04-08 22:47:38 +08:00
# env
> Show the environment or run a program in a modified environment.
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/env-invocation.html>.
2014-04-08 22:47:38 +08:00
- Show the environment:
2014-04-08 22:47:38 +08:00
`env`
- Run a program. Often used in scripts after the shebang (#!) for looking up the path to the program:
2016-01-05 14:24:11 -08:00
`env {{program}}`
- Clear the environment and run a program:
2014-04-08 22:47:38 +08:00
`env {{[-i|--ignore-environment]}} {{program}}`
2014-04-08 22:47:38 +08:00
- Remove variable from the environment and run a program:
2014-04-08 22:47:38 +08:00
`env {{[-u|--unset]}} {{variable}} {{program}}`
2014-04-08 22:47:38 +08:00
- Set a variable and run a program:
2014-04-08 22:47:38 +08:00
`env {{variable}}={{value}} {{program}}`
2020-09-11 04:18:16 -07:00
- Set one or more variables and run a program:
2020-09-11 04:18:16 -07:00
`env {{variable1}}={{value}} {{variable2}}={{value}} {{variable3}}={{value}} {{program}}`