Changes between Version 16 and Version 17 of Installation


Ignore:
Timestamp:
15.10.2014 09:39:35 (10 years ago)
Author:
battleborn
Comment:

Fixed bash completion and added more information.

Legend:

Unmodified
Added
Removed
Modified
  • Installation

    v16 v17  
    166166}}}
    167167
    168 == Bash completion ==
     168== Bash completion (Debian/Ubuntu) ==
    169169
    170 If you want to use auto completion for the scripts (i.e. pressing <TAB> to complete the current parameter, <TAB><TAB> to get a list of valid things in the current location) you have to enable Bash completion. At least on Debian this was not the default for the user root so the following line has to be added to /root/.bashrc:
     170If you want to use auto completion for the scripts (i.e. pressing <TAB> to complete the current parameter, <TAB><TAB> to get a list of valid things in the current location) you have to enable Bash completion. For root add, or if you're on Ubuntu just un-comment(delete the #'s) at the bottom, the following 3 lines. This is unnecessary if you enable it in /etc/bash.bashrc and /etc/profile.
     171
    171172{{{
    172 . /etc/bash_completion
     173if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
     174    . /etc/bash_completion
     175fi
    173176}}}
    174177
     178Update 15OCT2014 by Battleborn: Updated information for Ubuntu/Debian and made the script proper in case some dunce somehow effed or customized his distribution.
    175179
    176180== Install the game ==