9 lines
198 B
Bash
9 lines
198 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
##
|
||
|
# BASH COMPLETION
|
||
|
#
|
||
|
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
|
||
|
. /etc/bash_completion
|
||
|
fi
|