changes for quoting special and multibyte characters in glob patterns; changes to filename unicode normalization on macOS for globbing and filename completion; send SIGCONT unconditionally to just-restarted job in fg/bg

This commit is contained in:
Chet Ramey
2023-07-25 10:18:35 -04:00
parent ad39c5c3d7
commit 8418224f32
27 changed files with 624 additions and 462 deletions
+8
View File
@@ -2177,6 +2177,14 @@ If @var{parameter} is unset or null, the expansion of
$ v=123
$ echo $@{v-unset@}
123
$ echo $@{v:-unset-or-null@}
123
$ unset v
$ echo $@{v-unset@}
unset
$ v=
$ echo $@{v:-unset-or-null@}
unset-or-null
@end example
@item $@{@var{parameter}:=@var{word}@}