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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux学习基本练习--echo/printf用法相关的知识,希望对你有一定的参考价值。

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


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

[[email protected] ~]# type echo

echo is a shell builtin

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

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

[[email protected] ~]# 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是内部命令:

[[email protected] ~]# type printf

printf is a shell builtin

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

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

[[email protected] ~]# printf "The year is 2016.Today is 7.\n"

The year is 2016.Today is 7.

[[email protected] ~]# 


3、file命令使用及用法

man file  determine file type  确定文件类型

eg: file /bin/ls

file 绝对路径








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

以上是关于linux学习基本练习--echo/printf用法的主要内容,如果未能解决你的问题,请参考以下文章

linux 学习基础7之脚本的练习

linux 学习基础7之脚本的练习

Linux基本操作学习 - clearlsll文件属性

Linux练习生Linux指令汇总(入门必备)

《Linux Shell 脚本攻略》读书笔记

linux基础学习 第一单元练习