The new line \n
is not taken account in the shell strings
root@toto:~# str="aaa\nbbbb"
root@toto:~# echo $str
aaa\nbbbb
expected result:
root@toto:~# echo $str
aaa
bbbb
How to add a new line in the string?
$ echo "a\nb"
a\nb
$ echo -e "a\nb"
a
b