shell string newline code example
Example 1: newline in echo unix
echo $'hello\nworld'
Example 2: how to print new line in shell script
echo -e 'This is First Line \nThis is Second Line'
echo $'hello\nworld'
echo -e 'This is First Line \nThis is Second Line'