echo [OPTIONS] [STRING]
echo displays STRING of text.
The following options are available:
Do not output a newline.
Do not separate arguments with spaces.
Disable interpretation of backslash escapes (default).
Enable interpretation of backslash escapes.
Unlike other shells, this echo accepts -- to signal the end of the options.
If -e is used, the following sequences are recognized:
\ backslash\a alert (BEL)\b backspace\c produce no further output\e escape\f form feed\n new line\r carriage return\t horizontal tab\v vertical tab\0NNN byte with octal value NNN (1 to 3 digits)\xHH byte with hexadecimal value HH (1 to 2 digits)> echo 'Hello World' Hello World > echo -e 'Top\nBottom' Top Bottom > echo -- -n -n
© 2005-2009 Axel Liljencrantz, 2009-2026 fish-shell contributors
Licensed under the GNU General Public License, version 2.
https://fishshell.com/docs/4.5/cmds/echo.html