mirror of
https://github.com/reonokiy/dotfiles.git
synced 2025-06-15 14:12:53 +02:00
11 lines
207 B
Fish
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
|
|
|