I wondered if theres a way to do rotational style completion in bash similar to the behavoir on cmd.exe, I've found it speeds me up in regard to entering commands

link|improve this question
2  
is there any way of making cmd.exe's behaviour more similar to bash. I make less mistakes in bash because it doesnt pick the wrong file. – justintime Dec 16 '10 at 22:32
feedback

migrated from stackoverflow.com Dec 15 '10 at 15:29

This question came from our site for professional and enthusiast programmers.

2 Answers

In your ~/.inputrc file, add:

"\C-i": menu-complete

to re-read that file so it takes effect in the current shell, press Ctrl-x Ctrl-r.

link|improve this answer
This was really useful for my blind friend. Normal bash tab completion is useless with a screen reader; this makes it useable. – CajunLuke Feb 16 '11 at 5:05
reset would probably work too... – Hello71 Apr 19 '11 at 2:28
1  
@Hello71: reset affects the terminal, not bash. – Dennis Williamson Apr 19 '11 at 13:11
feedback

That won't be a very meaningful answer, but you have answer here:

http://spoonmanwos.blogspot.com/2006/02/bash-completion.html

http://www.jpsdomain.org/linux/linux.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown