Updated: October 28, 2024 |
Write arguments to standard output (POSIX)
echo [-n] [string...]
QNX Neutrino, Mac, Microsoft Windows
The echo utility writes its arguments, followed by a newline character, to standard output. If there are no arguments, only the newline character is written.
On the host system, echo is present in the two forms mentioned above but also as an OS command that you can run in a command session. You can use the echo utility independently of a shell process such as ksh or an OS command session. To make sure you use the utility, specify the full path; the exact path depends on the host OS. On Windows, the path must be specified as ${QNX_HOST}\usr\bin\echo.exe in scripts but %QNX_HOST%\usr\bin\echo.exe in a command line. On Mac, it's ${QNX_HOST}/usr/bin/echo for both usages.
There are differences in behavior between the OS command and the QNX SDP echo utility. The utility follows the POSIX standard in terms of supported options, meaning -n is supported, but the OS command's supported options depend on the host OS. On Windows, this command does not support -n but on Mac, it does support -n. Also on Mac, the OS command supports the extra option -e; the utility does not (on any host OS). For more information, see your host OS documentation on echo.
The echo utility supports the following escape sequences within string:
Escape | Description |
---|---|
\a | Write an alert character (the bell). |
\b | Write a backspace character. |
\c | Suppress the newline character that otherwise follows the final argument in the output. All characters following the \c in the arguments are ignored. |
\f | Write a formfeed character. |
\n | Write a newline character. |
\r | Write a carriage-return character. |
\t | Write a tab character. |
\v | Write a vertical tab character. |
\\ | Write a backslash character. |
\0num | Write an 8-bit value that's the ASCII character represented by the specified 1-, 2-, or 3-digit octal number num. |
Echo the string Hello, Mother\nHello, Father to the standard output (note that echo appends a final trailing newline):
$ echo 'Hello, Mother\nHello, Father' Hello, Mother Hello, Father $