I wanted to know if there is any way to insert a line break within the echo
of the shell script.
For example, in the command:
echo "Bom dia fulano"
I would like the output to be:
Bom dia
fulano
I know you can do it like this:
echo "bom dia"
echo "fulano"
But I would really like to know if there is any way to do this with a echo
only.