A report from the documentation maintainer
A report from the documentation maintainer
Posted Oct 31, 2016 16:13 UTC (Mon) by nybble41 (subscriber, #55106)In reply to: A report from the documentation maintainer by mathstuf
Parent article: A report from the documentation maintainer
> use {A..Z} which doesn't have the problem
That has a different problem: Unlike the glob pattern [A-Z], the braces expand to every letter from A to Z, even if some of them don't match:
$ echo [A-D]*
Desktop Documents Downloads
$ echo {A..D}*
A* B* C* Desktop Documents Downloads
> have bash expand globs on <Tab> like Zsh can[1]
The readline command for this in Bash is glob-expand-word (C-x *).
