Bash lets you complete commands names and names of files in the arguments with the TAB key. But why not also common options to commands? Why not, even better, a completion system that tells you what an option does, too?

I heard of programmable completion.. but don't understand where it fits..

So my question is: is there a way to achieve what I ask? Other tools to combine with Bash maybe.. or anything?

link|improve this question

58% accept rate
I'm on a mac with OSX 10.6, I use GNUBash version 3.2.48 – luca Dec 13 '09 at 13:16
feedback

6 Answers

If you want even more awesome completion, look into zsh. It's very much like bash, and takes some of the good features from ksh, tcsh, etc. It also fixes a few of the annoying bash bugs.

It can do some pretty cool stuff, including completing remote filenames for scp (if you have key-based authentication set up) and mini-documentation when you tab complete For example, I was pleasantly surprised when I tabbed on "jar" the other day:

[steven@sexy:~]% jar <tab>
0  -- store only without using ZIP compression
M  -- do not create manifest file
etc...
link|improve this answer
feedback

It's a standard feature of bash: programmable completion.

link|improve this answer
feedback

Bash does support argument completion: http://www.debian-administration.org/articles/316

link|improve this answer
feedback

Bash completion is very customisable and can display options to common commands. The configuration file just need to specify so. In Debian, bash completion comes with an assorted set of configuration files that complete options for different commands.

For example:

alanhaggai@neon:~$ tar
A  c  d  r  t  u  x
link|improve this answer
feedback

Here's the official man page of bash: Bash Reference Manual: Programmable Completion

link|improve this answer
feedback

On OS X, you can easily install a set of predefined bash completions using MacPorts by following the instructions here. Looking at the examples in /opt/local/etc/bash_completion.d may give you some ideas for making additional ones.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.