mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 21:07:57 +02:00
11 lines
151 B
Plaintext
11 lines
151 B
Plaintext
# test behavior of shopt xpg_echo
|
|
|
|
USG_ECHO=off
|
|
shopt -q xpg_echo && USG_ECHO=on
|
|
|
|
shopt -u xpg_echo
|
|
echo 'a\n\n\nb'
|
|
|
|
shopt -s xpg_echo
|
|
echo 'a\n\n\nb'
|