echo
Linux · Terminal · available in the simulator
What it does
Display a line of text.
Syntax
echo [-n] [-e] [texto...]
Options and parameters
-nDo not output the trailing newline.
-eEnable interpretation of backslash escapes such as \n or \t.
echo -e "linea1\nlinea2"
Usage examples
echo Holaecho -n sin_saltoecho -e 'linea1\nlinea2'echo -e 'a\nb'echo -e "linea1\nlinea2"