终端是用户与shell环境进行交互的窗口,所有命令的交互结果大部分都是从终端直接显示给用户,因此这部分是友好显示结果的基础。
echo是基本的终端输出命令,直接将传入的参数输入,命令格式如下:
echo [options] toBeOutput
详细说明如下:
默认情况下会在每次调用之后添加一个换行符。使用-n选项可以消除这个默认值。
user@ubuntu:~$ echo test a line
user@ubuntu:~$ test a line
user@ubuntu:~$ echo -n test a line
test a line user@ubuntu:~$
echo的参数可以使用双引号、单引号、不加引号,三种方式进行输出。每种方式都有各自的特性:
user@ubuntu:~$ var=world
user@ubuntu:~$ echo welcome to shell, $var
user@ubuntu:~$ welcome to shell, world
user@ubuntu:~$ echo “welcome to shell, $var”
user@ubuntu:~$ welcome to shell, world
user@ubuntu:~$ echo ‘welcome to shell, $var’
welcome to shell $varuser@ubuntu:~$ echo welcome; hello world
welcome
hello: command not found
user@ubuntu:~$ echo “welcome !hello world.”
bash: !hello: event not found
user@ubuntu:~$ echo “welcome !hello world.”
welcome !hello world.
user@ubuntu:~$ echo ‘welcome !hello world.’
welcome !hello world.
user@ubuntu:~$ echo welcome !hello world.
welcome !hello world.
echo的-e选项支持对双引号内的字符串进行转义:
echo -e "包含转义序列的字符串"
转义字符上述详细信息列出了所有的转移字符格式。
使用-E选项可以显式消除转义,将所有字符原样输出。默认选项是不使用转义字符。
user@ubuntu:~$ echo -e “\t”
user@ubuntu:~$ echo “\t”
\t
user@ubuntu:~$ echo -E “\t”
\t
转义序列实现色彩。文本色彩:重置=0,黑色=30,红色=31,绿色=32,黄色=33,蓝色=34,洋红=35,青色=36,白色=37。
背景色:重置=0,黑色=40,红色=41,绿色=42,黄色=43,蓝色=44,洋红=45,青色=46,白色=47。
user@ubuntu:~$ echo -e “\e[1:42m green background \e[0m”
printf也可以用来进行终端输出,使用的参数和格式与C语言中的类似。可以指定格式化字符串,指定字符串宽度、左右对齐方式等。默认情况下不添加换行符。
user@ubuntu:~$ printf “%-5s %-10s %-4.2f\n” Num James 80.324
Num James 80.32
“-”代表向左对齐,默认向右对齐。”4.2“代表占用4个字符宽度,保留两位小数。”s/f/c”等占位符表示类型。
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/u010487568/article/details/48143283