[bug #67238] Segmentation fault due to invalid struct field access in parse.y

2025-06-24 Thread bkallus
URL: Summary: Segmentation fault due to invalid struct field access in parse.y Group: The GNU Bourne-Again SHell Submitter: bkallus Submitted: Tue 24 Jun 2025 09:44:31 PM GMT

Re: Unexpected behavior of ${x#word} and ${x/pat/str} in the case command

2025-06-24 Thread Martin D Kealey
On Mon, 23 Jun 2025 at 19:02, Takaaki Konno wrote: > > x=abc > case def in > "${x#abc}"def) ;; > "${x##abc}"def) ;; > "${x%abc}"def) ;; > "${x%%abc}"def) ;; > "${x/abc/}"def) ;; > "${x//abc/}"def) ;; > "${x/#abc/}"def) ;; > "