有没有办法在 sed 命令中使用撇号?

有没有办法在 sed 命令中使用撇号?

有没有办法'在 sed 命令中使用撇号?

我的意思是:-

sed '-2 a\\
What's up?' text  

我说的是“What's up”中的撇号。如果我这样做,它会给我一个错误“不匹配”

\我尝试用OR来转义撇号\\What\'s up?但它不起作用。

答案1

sed '2 a\ 
What'\''s up?' text

或者

sed "2 a\ 
What's up?" text

相关内容