mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-06 17:56:58 +00:00
Update cheatsheets
This commit is contained in:
21
printenv
Normal file
21
printenv
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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}}`
|
||||
Reference in New Issue
Block a user