使用 sed 将 #' 插入到配置文件

使用 sed 将 #' 插入到配置文件

我正在尝试使用 sed 将内容插入#到配置文件中。我尝试过:

sed 's/33/#' /path/to/file 

但得到输出

sed: -e expression #1, char 6: unterminated `s' command

我也尝试过

sed -i '33i#' /path/to/file

这会将其添加#到第 33 行,但会将我想要注释的文本向下移动一行。

有人能给我指出正确的方向吗?

答案1

您所追求的解决方案是:

sed -i '33s/^/#/' /path/to/file

相关内容