echo
用途:用来显示一行文字,默认会自动换行
-e 支持转义
[root@hqy shell]# echo -e "he\nqiuyu"
he
qiuyu
-n 取消自动换行
[root@hqy shell]# echo -n "heqiuyu"
heqiuyu[root@hqy shell]#
echo
用途:用来显示一行文字,默认会自动换行
-e 支持转义
[root@hqy shell]# echo -e "he\nqiuyu"
he
qiuyu
-n 取消自动换行
[root@hqy shell]# echo -n "heqiuyu"
heqiuyu[root@hqy shell]#