echo -e 用法

栏目: Linux 发布时间:2022-02-18

shell 的 echo 指令与 PHP 的 echo 指令类似,用于字符串的输出。命令格式:

echo string

echo 实例

输出 hi

echo 'hi'

输出 hi 到 demo.log 日志文件

echo hi > demo.log

echo -e 输出换行

shell 脚本如何输出换行呢?

你可能会这么些:

echo hi\nlucy

然后得到的实际结果是 “hinlucy”:

$ echo hi\nlucy
hinlucy

echo 搭配 -e 参数开启转义

$ echo -e 'hi\nlucy'
hi
lucy

小结

在 shell 脚本中,如果需要输出 \n 或 -t 等特殊字符,请使用 echo -e

本文地址:https://www.tides.cn/p_linux-echo-e

标签: shell