如何使用shell脚本添加具有特殊字符的行

如何使用shell脚本添加具有特殊字符的行

我必须添加一行具有特殊字符的行,这是我的行。

sed -I  's/)/File have something 'example')/g' "example.ctl";

在此输入图像描述

我想要的输出以及单引号

File have something ‘example’ 

这个怎么做 ?

答案1

带双引号

echo "hello (world)" | sed "s/)/ with an 'example')/"

hello (world with an 'example')

带有复杂的引号:

echo "hello (world)" | sed "s/)/ with an hello ‘example’ )/"
hello (world with an hello ‘example’ )

相关内容