> On 3/23/16 6:15 PM, Isabella Parakiss wrote: >> Just wanted to report a couple of problems in 4.3.42 and the latest >> devel version: > > Thanks for the report. These were both easy fixes, and the fixes will > be in bash-4.4.
Using Isabella's examples and the latest devel snapshot, there still seems to be something off when dotglob is enabled: $ touch a b c .x .y .z $ shopt -s extglob dotglob $ echo @(*|@(f)) . .. .x .y .z a b c $ echo @(*|@(ff)) .x .y .z a b c