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