Auto complete by end/middle of line in bash - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T11:32:01Z http://stackoverflow.com/feeds/question/399209 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/399209/auto-complete-by-end-middle-of-line-in-bash 1 Auto complete by end/middle of line in bash Sam Saffron 2008-12-30T00:27:23Z 2008-12-30T16:06:13Z <p>In bash is there a quick way to do tab auto-completion based on the middle of a word. </p> <p>So for example, if I have these files in a directory: </p> <pre><code>001_apple.txt 002_pear.txt 003_dog.txt </code></pre> <p>I would like to type the sequence: <code>*d&lt;TAB&gt;</code> to auto-complete 003_dog.txt. </p> <p>Can this be done in bash? Is it easier to do in other shells? </p> http://stackoverflow.com/questions/399209/auto-complete-by-end-middle-of-line-in-bash/399221#399221 0 Answer by Ben for Auto complete by end/middle of line in bash Ben 2008-12-30T00:34:30Z 2008-12-30T00:34:30Z <p>You can substitute <code> `ls *d*` </code> to achieve the same effect, not quite as convenient as tab-completion however</p> http://stackoverflow.com/questions/399209/auto-complete-by-end-middle-of-line-in-bash/399248#399248 1 Answer by PEZ for Auto complete by end/middle of line in bash PEZ 2008-12-30T00:51:06Z 2008-12-30T00:51:06Z <p>Try ESC-g for glob expansion.</p> <p>And you should always install the bash-completion package (included by default often, but you need to source it in your bash profile script).</p> http://stackoverflow.com/questions/399209/auto-complete-by-end-middle-of-line-in-bash/399265#399265 0 Answer by Sam Saffron for Auto complete by end/middle of line in bash Sam Saffron 2008-12-30T01:14:00Z 2008-12-30T01:28:03Z <p>Looks like <a href="http://zsh.dotsrc.org/FAQ/zshfaq04.html" rel="nofollow">zsh does this</a> plus quite a bit more. See: expand-or-complete-prefix and COMPLETE_IN_WORD options. </p> <p><a href="http://fishshell.org/" rel="nofollow">Fish</a> also does this really nicely out-of-the-box. </p> http://stackoverflow.com/questions/399209/auto-complete-by-end-middle-of-line-in-bash/399275#399275 2 Answer by codelogic for Auto complete by end/middle of line in bash codelogic 2008-12-30T01:24:23Z 2008-12-30T01:24:23Z <pre><code>ls *d*&lt;TAB&gt; </code></pre> <p>works in bash. Not sure if that's what Ben meant. <code>ls</code> could of course be any other command.</p> http://stackoverflow.com/questions/399209/auto-complete-by-end-middle-of-line-in-bash/400670#400670 0 Answer by unknown (yahoo) for Auto complete by end/middle of line in bash unknown (yahoo) 2008-12-30T16:06:13Z 2008-12-30T16:06:13Z <p>I think this is a feature of readline (may even not the default keybinding):</p> <p>type "ls *middle*", then type "ctrl-x, *" will replace "*middle*" with the files that match the pattern.</p>