Files
bash/tests/builtins2.sub
2025-07-03 16:15:36 -04:00

15 lines
188 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'
echo -p
set -o posix
echo 'a\tb\tc'