1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 14:02:08 +02:00
tldr/pages/common/printenv.md
2021-04-01 18:54:26 +03:00

375 B

printenv

Print values of all or specific 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}}