echo with next line code example
Example 1: echo new line
echo -e "hello\nworld"
Example 2: echo new line
echo -e "hello\nworld"
# Output
/*
* hello
* world
*/
echo -e "hello\nworld"
echo -e "hello\nworld"
# Output
/*
* hello
* world
*/