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