Timeline for In zsh how can I list all the environment variables?
Current License: CC BY-SA 3.0
7 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Sep 7, 2022 at 12:27 | comment | added | Koo |
env and export are alsoe good options when combined with grep like this export | grep "git"
|
|
| Sep 7, 2022 at 12:17 | comment | added | Koo |
If you use zsh shell, I would recommend installing these plugins: alias-finder , aliases. To install append the mentioned plugin names in ~/.zshrc to the line describing plugins.
|
|
| Aug 13, 2022 at 9:53 | comment | added | 8c6b5df0d16ade6c |
typeset -x or equivalently export, or /usr/bin/env (or just env if your $PATH is set right, i.e contains /usr/bin:)
|
|
| Feb 3, 2012 at 23:27 | answer | added | Gilles 'SO- stop being evil' | timeline score: 45 | |
| Feb 3, 2012 at 15:46 | vote | accept | Ali | ||
| Feb 3, 2012 at 15:05 | answer | added | Chris Down | timeline score: 89 | |
| Feb 3, 2012 at 14:56 | history | asked | Ali | CC BY-SA 3.0 |