tldr/pages/common/env.md

29 lines
669 B
Markdown
Raw Normal View History

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