On Sat, Oct 18, 2025 at 11:24 PM Oğuz <[email protected]> wrote: > > On Sunday, October 19, 2025, Zachary Santer <[email protected]> wrote: >> >> My shell is in POSIX mode, but turning that off doesn't seem to make a >> difference. > > $ shopt -s failglob > $ x*y > bash: no match: x*y > > Turn off failglob
That probably should've been obvious. Thanks. $ touch x12=3 $ printf '%s\n' x[1][2]=3 x12=3 So the "indices" are being treated as bracket expressions. That makes sense.
