码迷,mamicode.com
首页 > 其他好文 > 详细

echo 换行不换行

时间:2015-03-04 12:38:08      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

echo换行输出需要转义符 -e

看以下例子:

1 echo -e "It is the first line." >> a; echo -e "It is the second line.\c" >> a; echo -e "It is the third line." >> a; echo -e "\nIt is the forth line." >> a

输出:

It is the first line.                                   //默认换行
It is the second line.It is the third line.             //第二行指定不换行,因此第三行紧跟第二行
                                    
It is the forth line.                                  //第三行默认换行,而且第四行前制定换行,因此中间空了一行

 

echo 换行不换行

标签:

原文地址:http://www.cnblogs.com/ManMonth/p/4312853.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!