dotfiles/dot_config/fish/functions/fish_aws_profile.fish
2025-03-20 17:38:10 +08:00

11 lines
207 B
Fish

function fish_aws_profile
if test (count $argv) -eq 0
set -e AWS_PROFILE
echo "AWS profile cleared"
return 0
end
set -gx AWS_PROFILE $argv[1]
echo "AWS profile set to $AWS_PROFILE"
end