Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
shells/ksh: Fix ksh 1.0.5 Regression (issue #660)
From issue #660: Globs are not expanded with the following: % echo "/"{bin,sbin}"/*" /bin/* /sbin/* % v=/; echo "$v"bin"/*" /bin/* But globbing is unexpectedly performed if both parameter substitution and brace expansion are present: % v=/; echo "$v"{bin,sbin}"/*" [output omitted for the sake of brevity] Obtained from: ksh93/ksh#660 MFH: 2023Q3
- Loading branch information