shell echo ${} | sed作为变量输出
时间: 2024-05-09 18:16:29 浏览: 52
echo命令 输出字符串或提取Shell变量的值
可以使用如下的方式:
```shell
var="hello world"
echo "${var}" | sed 's/world/ChitChat/g'
```
这个命令的含义是:将变量 `$var` 中的字符串 "world" 替换为 "ChitChat",然后输出替换后的字符串。`${var}` 用于引用变量 `$var` 的值,保证变量的值被正确传递到管道中。`sed` 命令用于替换字符串,其中的 `s/world/ChitChat/g` 表示将字符串中所有的 "world" 替换为 "ChitChat"。
阅读全文