config-bash/completion.d/aws

7 lines
106 B
Bash

#!/bin/bash
if ( which aws && which aws_completer ) &> /dev/null
then
complete -C aws_completer aws
fi