2014-04-08 15:47:38 +01:00
|
|
|
# env
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Show the environment or run a program in a modified environment.
|
2021-04-01 16:54:26 +01:00
|
|
|
> More information: <https://www.gnu.org/software/coreutils/env>.
|
2014-04-08 15:47:38 +01:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Show the environment:
|
2014-04-08 15:47:38 +01:00
|
|
|
|
|
|
|
`env`
|
|
|
|
|
2016-01-21 12:32:55 +00:00
|
|
|
- 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}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Clear the environment and run a program:
|
2014-04-08 15:47:38 +01:00
|
|
|
|
|
|
|
`env -i {{program}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Remove variable from the environment and run a program:
|
2014-04-08 15:47:38 +01:00
|
|
|
|
|
|
|
`env -u {{variable}} {{program}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Set a variable and run a program:
|
2014-04-08 15:47:38 +01:00
|
|
|
|
2015-10-28 08:33:06 +00:00
|
|
|
`env {{variable}}={{value}} {{program}}`
|
2020-09-11 12:18:16 +01:00
|
|
|
|
2024-01-31 03:55:19 +00:00
|
|
|
- Set one or more variables and run a program:
|
2020-09-11 12:18:16 +01:00
|
|
|
|
|
|
|
`env {{variable1}}={{value}} {{variable2}}={{value}} {{variable3}}={{value}} {{program}}`
|