Go to the first, previous, next, last section, table of contents.


echo: Print a line of text

echo writes each given string to standard output, with a space between each and a newline after the last one. Synopsis:

echo [option]... [string]...

The program accepts the following options. Also see section Common options.

`-n'
Do not output the trailing newline.
`-e'
Enable interpretation of the following backslash-escaped characters in each string:
`\a'
alert (bell)
`\b'
backspace
`\c'
suppress trailing newline
`\f'
form feed
`\n'
new line
`\r'
carriage return
`\t'
horizontal tab
`\v'
vertical tab
`\\'
backslash
`\nnn'
the character whose ASCII code is nnn (octal); if nnn is not a valid octal number, it is printed literally.


Go to the first, previous, next, last section, table of contents.