Created
January 16, 2018 05:21
-
-
Save lantrix/037bae641622ed7a7d70d5ed936da841 to your computer and use it in GitHub Desktop.
Unset AWS variables in bash shell
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
| while read var; do unset $var; done < <(set |grep AWS | sed 's/=.*$//') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment