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
| # Function to set the current AWS Profile. | |
| # | |
| # Checks to see if the profile exists before setting it. | |
| set AWS_PROFILES_PATH $HOME/.aws/credentials | |
| function awsprofile | |
| set target_profile $argv | |
| if test -z $target_profile |
OlderNewer