mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-13 00:52:56 +00:00
9 lines
229 B
Fish
9 lines
229 B
Fish
|
#!/usr/bin/local/fish
|
||
|
|
||
|
function aws --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
|