1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/printenv.md

17 lines
399 B
Markdown
Raw Normal View History

# printenv
2018-10-09 00:16:27 +02:00
> Print values of all or environment variables.
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/printenv-invocation.html>.
2018-10-09 00:16:27 +02:00
- 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:
`printenv --null {{HOME}}`