mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
14 lines
150 B
Plaintext
14 lines
150 B
Plaintext
# test varredir_close
|
|
|
|
: {fd}<>/dev/null
|
|
|
|
echo redir 1 >&$fd
|
|
exec {fd}>&-
|
|
|
|
shopt -s varredir_close
|
|
|
|
: {fd}<>/dev/tty
|
|
|
|
echo redir 2 >&$fd
|
|
exec {fd}>&-
|