1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-05 08:08:02 +00:00

Add All The Environment Variables as a zsh til.

This commit is contained in:
jbranchaud
2015-05-17 17:42:54 -05:00
parent bf72e6cca8
commit 8b4c47ae69
2 changed files with 7 additions and 0 deletions

View File

@@ -112,6 +112,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
### zsh
- [All The Environment Variables](zsh/all-the-environment-variables.md)
- [Cat A File With Line Numbers](zsh/cat-a-file-with-line-numbers.md)
- [Clear The Screen](zsh/clear-the-screen.md)
- [Create A File Descriptor with Process Substitution](zsh/create-a-file-descriptor-with-process-substitution.md)

View File

@@ -0,0 +1,6 @@
# All The Environment Variables
If you want to see all the environment variables defined on your machine,
you can list them all out with `printenv`. If you are like me, you probably
have a ton of them. Pipe it through `less` to make it easier to navigate and
search through (i.e. `printenv | less`).