mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 23:02:07 +02:00

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
16 lines
366 B
Markdown
16 lines
366 B
Markdown
# printenv
|
|
|
|
> Print values of all or environment variables.
|
|
> More information: <https://www.gnu.org/software/coreutils/printenv>.
|
|
|
|
- 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}}`
|