2025-03-14 21:59:59 -06:00
|
|
|
# printenv
|
|
|
|
|
|
|
|
|
|
> Print values of all or environment variables.
|
|
|
|
|
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/printenv-invocation.html>.
|
|
|
|
|
|
|
|
|
|
- Display key-value pairs of all environment variables:
|
|
|
|
|
|
|
|
|
|
`printenv`
|
|
|
|
|
|
|
|
|
|
- Display the value of a specific variable:
|
|
|
|
|
|
|
|
|
|
`printenv {{HOME}}`
|
|
|
|
|
|
|
|
|
|
- Display the value of a variable and end with NUL instead of newline:
|
|
|
|
|
|
2025-04-03 20:36:56 -06:00
|
|
|
`printenv {{[-0|--null]}} {{HOME}}`
|