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