Guest User

Untitled

a guest
May 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #compdef set-aws-profile
  2.  
  3. _set-aws-profile() {
  4. local curcontext="$curcontext" state line
  5. typeset -A opt_args
  6.  
  7. _arguments '1: :->csi'
  8.  
  9. case $state in
  10. csi)
  11. _arguments "1: :($(aws-profiles))"
  12. ;;
  13. esac
  14. }
  15.  
  16. _set-aws-profile "$@"
Add Comment
Please, Sign In to add comment