其他
每天进步一点点之linux命令(8):echo命令
echo [参数] [字符串]
常用参数:-e:启用反斜杠转义\n:与-e配合,起到换行的作用实例演示:例1:显示一段字符[root@studyclub ~]# echo "cloud study club"
例2:输出变量的值
[root@studyclub ~]# echo "$PATH"
例3:输出一段字符
[root@studyclub ~]# echo '$PATH'
例4:将"cloud study club"写入study文件中
[root@studyclub ~]# echo "cloud study club" > study
例5:将“We all help each other stay strong.We all help each other stay strong.”按照每句话为一行,分行显示。
[root@studyclub ~]# echo -e "We all help each other stay strong.\nWe all help each other stay strong."
课后练习:使用echo命令显示:“Welcome to cloud study club. I'm Jason, the founder”。要求:以句号为一句话,每句话分行显示。 思考题:你的例2和例3个命令的执行结果一样吗?如果不一样,为什么? 思考+实践:例5中,如果命名写成如下的形式会是什么结果?为什么? [root@studyclub ~]# echo -e 'We all help each other stay strong.\nWe all help each other stay strong.'