码迷,mamicode.com
首页 > 系统相关 > 详细

Linux Gvim shell echo命令

时间:2016-06-09 09:46:34      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:

#echo命令:shell的内部指令,用于在屏幕上打印指定的字符串

1 a=10
2 echo \" this is a test \"

#下列第二个执行效率高,第一个则是充分利用了双引号,但不是效率最高的写法

1 echo " 接收到 , ${a} "
2 echo  接收到 ,${a}

#显示不换行.以下在同一行输出 ok! this is a test

1 echo -e " ok!\c "
2 echo " this is a test "

#执行时间命令

1 echo ` date `

#显示结果写入myFile文件,如果文件不存在则会创建此文件

1 echo " this is a test " > myFIle

 

Linux Gvim shell echo命令

标签:

原文地址:http://www.cnblogs.com/blog4matto/p/5571986.html

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