Created
September 9, 2022 09:16
-
-
Save soren/8f49f7a942d831d10a52c00eca706635 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function show_env_vars() { | |
env \ | |
| sort -t= -k1 \ | |
| sed -e '1 i\Environement Variable\tValue\n=====================\t=====' -e 's/=/\t/' \ | |
| column -ts$'\t' \ | |
| cut -c-$COLUMNS \ | |
| less -F | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment