1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/pages/common/printenv.md

408 B

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:

printenv {{[-0|--null]}} {{HOME}}