Skip to content

Instantly share code, notes, and snippets.

@soren
Created September 9, 2022 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save soren/8f49f7a942d831d10a52c00eca706635 to your computer and use it in GitHub Desktop.
Save soren/8f49f7a942d831d10a52c00eca706635 to your computer and use it in GitHub Desktop.
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