Added completion support for aws and kubectl
This commit is contained in:
parent
e32a50b531
commit
281ad5bd84
6
completion.d/aws
Normal file
6
completion.d/aws
Normal file
@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
if ( which aws && which aws_completer &> /dev/null )
|
||||
then
|
||||
complete -C aws_completer aws
|
||||
fi
|
6
completion.d/kubectl
Normal file
6
completion.d/kubectl
Normal file
@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
if ( which kubectl &> /dev/null )
|
||||
then
|
||||
source <(kubectl completion bash)
|
||||
fi
|
Loading…
Reference in New Issue
Block a user