Does bash partial/substring file completion similar to what zsh does?
That is, instead of requiring the user to enter a prefix of the filename, then tab; the user can also enter a substring of the filename, then tab.
Say a directory contains a file abcdef
, then not only would ab<tab>
complete to this filename, but also bc<tab>
and cd<tab>
and so on.