使用 sed 可以轻松查找和替换文本
sed 's/text/replace_text/g'
'
但是如果我们有in text
or ,该如何使用它呢replace_text
?我想{
用'{
脚本替换awk
。
我尝试了不同的方法:
sed 's/{/'{/g' 22 > 23
结果是
Unmatched '
。sed 's/{/"'"{/g' 22 > 23
导致
Unmatched "
。
谁能告诉怎么做吗?
使用 sed 可以轻松查找和替换文本
sed 's/text/replace_text/g'
'
但是如果我们有in text
or ,该如何使用它呢replace_text
?我想{
用'{
脚本替换awk
。
我尝试了不同的方法:
sed 's/{/'{/g' 22 > 23
结果是Unmatched '
。
sed 's/{/"'"{/g' 22 > 23
导致Unmatched "
。
谁能告诉怎么做吗?