From 8b4c47ae69c14a582c6a0d1f0f45a77893076ee7 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sun, 17 May 2015 17:42:54 -0500 Subject: [PATCH] Add All The Environment Variables as a zsh til. --- README.md | 1 + zsh/all-the-environment-variables.md | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 zsh/all-the-environment-variables.md diff --git a/README.md b/README.md index f5d3c1f..df55a7c 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/zsh/all-the-environment-variables.md b/zsh/all-the-environment-variables.md new file mode 100644 index 0000000..adacc39 --- /dev/null +++ b/zsh/all-the-environment-variables.md @@ -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`).