1# test behavior of shopt xpg_echo
2
3USG_ECHO=off
4shopt -q xpg_echo && USG_ECHO=on
5
6shopt -u xpg_echo
7echo 'a\n\n\nb'
8
9shopt -s xpg_echo
10echo 'a\n\n\nb'
11