Skip to content

Instantly share code, notes, and snippets.

@lantrix
Created January 16, 2018 05:21
Show Gist options
  • Select an option

  • Save lantrix/037bae641622ed7a7d70d5ed936da841 to your computer and use it in GitHub Desktop.

Select an option

Save lantrix/037bae641622ed7a7d70d5ed936da841 to your computer and use it in GitHub Desktop.
Unset AWS variables in bash shell
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