2014-04-08 18:47:38 +04:00
|
|
|
# env
|
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
> Show the environment or run a program in a modified environment.
|
2014-04-08 18:47:38 +04:00
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Show the environment:
|
2014-04-08 18:47:38 +04:00
|
|
|
|
|
|
|
`env`
|
|
|
|
|
2016-01-21 15:32:55 +03:00
|
|
|
- Run a program. Often used in scripts after the shebang (#!) for looking up the path to the program:
|
2016-01-06 01:24:11 +03:00
|
|
|
|
|
|
|
`env {{program}}`
|
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Clear the environment and run a program:
|
2014-04-08 18:47:38 +04:00
|
|
|
|
|
|
|
`env -i {{program}}`
|
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Remove variable from the environment and run a program:
|
2014-04-08 18:47:38 +04:00
|
|
|
|
|
|
|
`env -u {{variable}} {{program}}`
|
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Set a variable and run a program:
|
2014-04-08 18:47:38 +04:00
|
|
|
|
2015-10-28 11:33:06 +03:00
|
|
|
`env {{variable}}={{value}} {{program}}`
|