echo - display a line of text
| Use Case | Command | Description |
|---|---|---|
| đ Print a simple message | echo "Hello, World!" |
Displays the string followed by a newline. |
| đ Suppress trailing newline | echo -n "No newline" |
Outputs text without adding a newline at the end. |
| â Interpret escape sequences | echo -e "Line1\nLine2" |
Enables interpretation of backslash escapes like \n. |
| đ¤ Print multiple strings | echo "one" "two" "three" |
Concatenates strings separated by spaces. |
| đ§ Enable interpretation explicitly | echo -e "Tab\there" |
Uses -e to process escape sequences (e.g., \t). |
echo [SHORT-OPTION]... [STRING]...
echo LONG-OPTION
Echo the STRING(s) to standard output.
If -e is in effect, 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)NOTE: your shell may have its own version of echo, which usually supersedes the version described here. Please refer to your shell's documentation for details about the options it supports.
Written by Brian Fox and Chet Ramey.
GNU coreutils online help: https://www.gnu.org/software/coreutils/
Report any translation bugs to https://translationproject.org/team/
Copyright Š 2020 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later https://gnu.org/licenses/gpl.html.
This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
Full documentation https://www.gnu.org/software/coreutils/echo
or available locally via: info '(coreutils) echo invocation'
Generated by phpman v4.9.26-1-g511901d · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-07-31 00:59 @216.73.217.152
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format