Posts Tagged ‘ Bash ’
Some of these steps were taken from here: http://justamemo.com/2009/02/09/bash-completion-along-with-svn-and-git-tab-completion/ I used MacPorts to install bash-completion: sudo port install bash-completion Save the following http://svn.apache.org/repos/asf/subversion/trunk/tools/client-side/bash_completion to /opt/local/etc/bash_completion.d/svn-completion.sh Add the following to .bash_profile or .profile as appropriate. # for bash-completion if [ -f /opt/local/etc/bash_completion ]; then . /opt/local/etc/bash_completion fi source /opt/local/etc/bash_completion.d/svn-completion.sh source /opt/local/etc/bash_completion.d/git-completion.sh Now restart your Terminal[ READ MORE ]
I recently ran into an issue where a system I was accessing would paste the last command when typing “Esc .” I know this is a Bash shortcut so I went to investigating Turns out in /etc/bashrc I found set -o vi which tells the shell to use a vi-style command line editing interface. Here [ READ MORE ]
Get every new post delivered to your Inbox.