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

linux学习基本练习--echo/printf用法

时间:2016-10-08 02:54:33      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:file echo linux

1、echo是内部命令还是外部命令?其作用是什么?如何显示“the year is 2016.Today is 10yue 26”为两行?


通过type命令可知echo是内部命令:

[root@xuelinux ~]# type echo

echo is a shell builtin

echo作用:直接显示输入的内容。

echo -e "the year is 2016. \n today is 7."

[root@xuelinux ~]# echo -e "The year is 2016. \nToday is 7."

The year is 2016. 

Today is 7.


2、printf是内部命令还是外部命令?其作用是什么?如何显示“the year is 2016.Today is 10yue 26”为两行?

通过type命令可知printf是内部命令:

[root@xuelinux ~]# type printf

printf is a shell builtin

printf作用:格式并显示输入的内容。

printf "the year is 2016. \n today is 7."

[root@xuelinux ~]# printf "The year is 2016.Today is 7.\n"

The year is 2016.Today is 7.

[root@xuelinux ~]# 


3、file命令使用及用法

man file  determine file type  确定文件类型

eg: file /bin/ls

file 绝对路径








本文出自 “学linux历程” 博客,请务必保留此出处http://woyaoxuelinux.blog.51cto.com/5663865/1859079

linux学习基本练习--echo/printf用法

标签:file echo linux

原文地址:http://woyaoxuelinux.blog.51cto.com/5663865/1859079

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