存档

文章标签 ‘completion’

bash_completion install in Mac OS X Snow Leopard

2010年5月5日 a18ccms 1 条评论

Recently,I Try to use the Snow Leopard ,But it lacks a feature.

Debian-like bash_completion! I missed you! So I Seached with Google!

To install it just do:

sudo port install bash-completion
echo "source /opt/local/etc/bash_completion" >> ~/.bash_profile
chmod +x ~/.bash_profile

Tip: You must have MacPorts installed to run the first command. MacPorts Form http://www.macports.org .

If you don’t know yet what is bash_completion, it is  a feature for shells to autocomplete commands. Example: You are on a git repository. You type git fe and press TAB, bash_completion will fill “fetch” for you. If you have branches, they are autocompleted too. GNU Tar only shows files compatible with the filters you selected. So if you tar xvzf my-softw TAB, it will complete only filenames that are on tar.gz or tgz format and that starts with the string you already typed.

It is heaven again.

分类: Linux 标签: , ,

Add Bash Completion In Debian

2010年3月16日 a18ccms 2 条评论

Bash completion is a useful tool for completion of file paths, commands etc. By default it is enabled on Ubuntu but not on Debian. With two simple steps it can also be enabled on Debian.

1. Install bash-completion

First of all we need the install the according package:
阅读全文...

分类: Linux 标签: , ,