Skip to content

Instantly share code, notes, and snippets.

@kyanny
Last active July 30, 2020 03:37
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 kyanny/e8778b6b6f1db0a5ae0d6ac16ad1b582 to your computer and use it in GitHub Desktop.
Save kyanny/e8778b6b6f1db0a5ae0d6ac16ad1b582 to your computer and use it in GitHub Desktop.
aws-logout() {
for env in $(awk 'BEGIN{for(v in ENVIRON) print v}' | grep ^AWS)
do
echo "unset $env"
unset $env
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment