echo/printf用法及区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了echo/printf用法及区别相关的知识,希望对你有一定的参考价值。
一、echo 用法:直接显示输入的内容。
例: #echo -e "the year is 2016. \n today is 7."
the year is 2016.
today is 7.
二、printf 用法:格式并显示输入的内容。
例:#printf "The year is 2016.\nToday is 7.\n"
The year is 2016.
Today is 7.
三、区别:
(1)首先echo是回显,即代表回车显示,是自带换行的;而printf只是打印出来,没有换行
(2)echo只是回显没有变量替换功能;printf是有的
举例:假如我们定义好变量a=‘hello world‘
则 echo "%s" $a 显示的结果就是%s
而 printf "%s\n" $a 显示的结果就是hello world
本文出自 “10858195” 博客,请务必保留此出处http://10868195.blog.51cto.com/10858195/1941160
以上是关于echo/printf用法及区别的主要内容,如果未能解决你的问题,请参考以下文章