mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
9 lines
124 B
Plaintext
9 lines
124 B
Plaintext
# Right now, the {varname} mechanism does not honor set -u for compatibility
|
|
unset v
|
|
set -u
|
|
exec {v}>&-
|
|
|
|
echo after
|
|
|
|
exit 0
|