4 lines
95 B
Bash
4 lines
95 B
Bash
#!/bin/bash
|
|
if [ -x /usr/bin/terraform ]; then
|
|
complete -C /usr/bin/terraform terraform
|
|
fi
|