mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
9 lines
234 B
Fish
9 lines
234 B
Fish
#!/usr/bin/local/fish
|
|
|
|
function awstools --description "AWS bindings"
|
|
function unsetaws --description "Clear AWS credentials environment variables"
|
|
set -e AWS_ACCESS_KEY_ID
|
|
set -e AWS_SECRET_ACCESS_KEY
|
|
end
|
|
end
|