mirror of
https://github.com/LCTT/TranslateProject.git
synced 2025-01-07 22:11:09 +08:00
4.2 KiB
4.2 KiB
Echo命令实例
echo命令是内建的shell命令,用于显示变量的值或者打印一行文本。
echo命令在构建shell脚本时扮演着重要的角色。
语法:
# echo [Options] [String]
方括号中的项目是可选的。字符串可以定义为字符的有限序列(如字母,数字,符号,标点符号)。
当echo命令不带任何选项或字符串使用时,它会在显示屏上返回一个空白行,后面换一行跟上命令提示符。这是因为按下回车键就是发送一个信号给系统以开始一个新行,而echo重复了该信号。
选项:
- -n 不要输出衍生的新行
- -e 启用反斜线转义解释
- -E 禁用反斜线转义解释(默认)
如果-e生效,下列序列被识别:
- \ 反斜线
- \a 警告(BEL)
- \b 反斜线
- \c 不产生进一步输出
- \e 转义
- \f 换页
- \n 新行
- \r 换行字符
- \t 水平制表
- \v 垂直制表
- \0NNN 八进制值表示的字节NNN(1到3个数字)
- \xHH 十六进制值表示的字节NNN(1到2个数字)
样例:1 显示系统定义的变量的值
使用set命令,我们可以列出系统定义的变量。而要打印这些变量的值,我们可以使用echo命令:
jack@localhost:~$ echo $USER
jack
jack@localhost:~$ echo $HOME
/home/jack
样例:2 显示用户定义的变量的值
jack@nextstep4it:~$ var1=`date`
jack@nextstep4it:~$ echo "Today's date time is : $var1"
Today's date time is : Mon Jul 28 13:11:37 IST 2014
样例:3 显示文本字符串
jack@nextstep4it:~$ echo " Hi this echo command testing"
Hi this echo command testing
样例:4 在echo命令中使用反斜线
jack@nextstep4it:~$ echo -e "Ubuntu \bis \bthe \bbest \bDesktop \bOS"
上述命令将打印:
UbuntuisthebestDesktopOS
样例:5 在echo命令中使用制表符空格
nextstep4it@nextstep4it:~$ echo -e "Ubuntu \tis \tthe \tbest \tDesktop \tOS"
上述命令将显示如下输出:
Ubuntu is the best Desktop OS
样例:6 在echo命令中使用垂直制表符
jack@nextstep4it:~$ echo -e "Ubuntu \vis \vthe \vbest \vDesktop \vOS"
Ubuntu
is
the
best
Desktop
OS
样例:7 设置echo命令彩色输出
echo命令可以修改字体类型,字体背景色以及字体颜色,转义序列\033可以用于改变字体属性。要使转义序列生效,必须使用-e选项。下面列出了部分转义代码:
- [0m: Normal
- [1m: Bold fonts
- [2m: Font color changes to Purple
- [4m: Underlined fonts
- [7m: Invert foreground and background colors
- [8m: Invisible fonts
- [9m: Cross lined fonts
- [30m: Font color changes to Grey
- [31m: Font color changes to Red
- [32m: Font color changes to Green
- [33m: Font color changes to Brown
- [34m: Font color changes to Blue
- [35m: Font color changes to Violet
- [36m: Font color changes to Sky Blue
- [37m: Font color changes to Light Grey
- [38m: Font color changes to Black
- [40m: Background color changes to Black
- [41m: Background color changes to Red
- [42m: Background color changes to Green
- [43m: Background color changes to Brown
- [44m: Background color changes to Blue
- [45m: Background color changes to Violet
- [46m: Background color changes to Sky Blue
- [47m: Background color changes to Light Grey
下面的命令将用红色打印输出。
jack@nextstep4it:~$ echo -e "\033[31mMagic of Linux\033[0m"
Magic of Linux
下面的命令将以粗体以及红色背景打印出“Magic of Linux”。
nextstep4it@nextstep4it:~$ echo -e "\033[1m\033[41mMagic of Linux\033[0m"
Magic of Linux
via: http://www.nextstep4it.com/categories/unix-command/echo-command/