Skip to content

Instantly share code, notes, and snippets.

@andreav
Last active June 23, 2022 22:32
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 andreav/b5188a8640a9e612d39bc52743abab99 to your computer and use it in GitHub Desktop.
Save andreav/b5188a8640a9e612d39bc52743abab99 to your computer and use it in GitHub Desktop.
aws profile chooser and setter for bash. alias let me set AWS_PROFILE without launching another shell
alias aws-profile-chooser='x() { select prof in $( aws configure list-profiles ) ; do export AWS_PROFILE="$prof"; break; done }; x'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment