修改Linux文件内容

时间:2017-08-30 17:49:51

标签: linux automation

我想从命令行界面(CLI)修改SSH配置文件。

最初的文件有:

PasswordAuthentication no

应该是

PasswordAuthentication yes

我可以使用sed替换文字,但无法修改。请帮忙 感谢

1 个答案:

答案 0 :(得分:0)

git stash pop是一个流编辑器,旨在处理流。如果要编辑文件,请使用其表兄sed

ed

请注意,对于echo '/PasswordAuthentication/s/no/yes/ w q' | ed /path/to/file 的某些实现,您可以使用sed修改文件。