标签: linux bash shell ubuntu vi
我正在使用Ubuntu 16.04编写脚本。在我的bash文件中,我有一个代码:
sed -i 's/error/right/g' hello.txt
这是我的文件“hello.txt”中的全局查找和替换。 如何转换它以使其成为查找和替换脚本并确认?
答案 0 :(得分:0)
您可以使用search和replace命令调用vi编辑器:
$ vi -c '1,$ s/error/right/c' hello.txt
或来自vim
:s/error/right/gc