Auto complete by end/middle of line in bash - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T11:32:01Zhttp://stackoverflow.com/feeds/question/399209http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/399209/auto-complete-by-end-middle-of-line-in-bash1Auto complete by end/middle of line in bashSam Saffron2008-12-30T00:27:23Z2008-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<TAB></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#3992210Answer by Ben for Auto complete by end/middle of line in bashBen2008-12-30T00:34:30Z2008-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#3992481Answer by PEZ for Auto complete by end/middle of line in bashPEZ2008-12-30T00:51:06Z2008-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#3992650Answer by Sam Saffron for Auto complete by end/middle of line in bashSam Saffron2008-12-30T01:14:00Z2008-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#3992752Answer by codelogic for Auto complete by end/middle of line in bashcodelogic2008-12-30T01:24:23Z2008-12-30T01:24:23Z<pre><code>ls *d*<TAB>
</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#4006700Answer by unknown (yahoo) for Auto complete by end/middle of line in bashunknown (yahoo)2008-12-30T16:06:13Z2008-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>