Advertisement
Guest User

improvbash.sh

a guest
Aug 11th, 2010
1,023
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.39 KB | None | 0 0
  1. [ -z "`grep -o 'completion-ignore-case on' ~/.bashrc`" ] \
  2.  && echo "bind 'set completion-ignore-case on' # turnon ignorecase" >> ~/.bashrc
  3.  
  4. [ -z "`grep -o 'show-all-if-ambiguous on' ~/.bashrc`" ] \
  5.  && echo "bind 'set show-all-if-ambiguous on' # dont require two tabs" >> ~/.bashrc
  6.  
  7. [ -z "`grep -o 'shopt -s cdspell' ~/.bashrc`" ] \
  8.   && echo "shopt -s cdspell # fix wrong type keys" >> ~/.bashrc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement