名称
echo - 显示一行文本
概述
echo [短选项]... [字符串列表]...
echo 长选项
echo 长选项
描述
将字符串列表中的字符输出到标准输出。
- -n
- 不输出尾随的换行符
- -e
- 启用解释反斜杠的转义功能
- -E
- 禁用解释反斜杠的转义功能(默认)
- --help
- 显示此帮助信息并退出
- --version
- 显示版本信息并退出
若 -e 可用,则以下序列即可识别:
- \\
- 反斜线
- \a
- 报警符(BEL)
- \b
- 退格符
- \c
- 禁止尾随的换行符
- \e
- escape 字符
- \f
- 换页符
- \n
- 另起一行
- \r
- 回到行首
- \t
- 水平制表符
- \v
- 垂直制表符
- \0NNN
- 字节数以八进制数 NNN (1至3位)表示
- \xHH
- 字节数以十六进制数 HH (1至2位)表示
注意:您的 shell 可能内置了自己的 echo 程序版本,它会覆盖这里所提及的相应版本。请查阅您的 shell 文档获知它所支持的选项。
作者
由 Brian Fox 和 Chet Ramey 编写。
报告错误
GNU coreutils 的在线帮助: <http://www.gnu.org/software/coreutils/>
请向 <http://translationproject.org/team/zh_CN.html> 报告 echo 的翻译错误。
请向 <http://translationproject.org/team/zh_CN.html> 报告 echo 的翻译错误。
版权
Copyright © 2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL
version 3 or later <http://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.
This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.