Update NTP Gist - Add more servers from Brasil
[gists.git] / gists / Bash_Completion_Slackware.txt
blobc2b1facd4e2720cc91ff029498a8bdd912b70e98
1 Slackware bash-completion
3   slackpkg install bash-completion
6 How to enable bash-compleation properly? 
7 Add those lines into your $HOME.bashrc file.
9   vim ~/.bashrc
11   if ! shopt -oq posix; then
12     if [ -f /usr/share/bash-completion/bash_completion ]; then
13       . /usr/share/bash-completion/bash_completion
14     elif [ -f /etc/bash_completion ]; then
15       . /etc/bash_completion
16     fi
17   fi