要使用ex
(vi
是的可视模式ex
)非交互式地编辑文件,可以使用+{command}
或-c {command}
参数,该参数允许您在读取第一个文件后执行vi命令。
的ex
是一个标准的命令行编辑器(类似ed
)。
还vipe
应该使用(Vim命令管道编辑器),它是moreutils
软件包的一部分,它使您可以在Unix管道的中间运行编辑器,并编辑在程序之间管道传输的数据。
例子
可以通过以下shell语法实现使用管道的简单标准输入和输出:
$ ex -sc'%p|q!' <(echo Example)
$ echo Example | ex -sc'%p|q!' /dev/stdin
这是一个简单的示例,说明替换后如何打印文件:
$ ex /etc/hosts +%s/127/128/ge -sc'%p|q!'
就地编辑文件的更多示例:
$ ex +'%s/127/128/g' -cswq file
$ ex -sc '%s/olddomain\.com/newdomain.com/g|x' file
$ printf '%s\n' 'g/olddomain\.com/s//newdomain.com/g' w q | ex -s file
$ ex -s "$file" <<< $'g/old/s//new/g\nw\nq'
$ ex -sc 'argdo %s/old/new/ge|x' ./**
$ find . -type f -exec ex -sc '%s/old/new/g|x' {} \;
您还可以使用,-s {scriptin}
以便从文件中加载命令,例如:
$ printf "%s\n" '%s/foo/test/ge' 'wq' > cmds.vim
$ vim -s cmds.vim -es file
或使用I / O重定向:
$ vim file < cmds.vim
要编辑一个文件并将更改保存到另一个文件,请检查以下示例:
$ ex +%s/127/128/g -sc'wq! new_file' /etc/hosts
$ cat /etc/hosts /etc/fstab | vim - -es '+:%s/foo/test/g' '+:wq! file3'
更实际的例子。
活生生的例子从RPM规格:
vim -E -s Makefile <<-EOF
:%substitute/CFLAGS = -g$/CFLAGS =-fPIC -DPIC -g/
:%substitute/CFLAGS =$/CFLAGS =-fPIC -DPIC/
:%substitute/ADAFLAGS =$/ADAFLAGS =-fPIC -DPIC/
:update
:quit
EOF
提取html标签:
ex -s +'bufdo!/<div.*id=.the_div_id/norm nvatdggdG"2p' +'bufdo!%p' -cqa! *.html
删除XML标签:
ex -s +'%s/<[^>].\{-}>//ge' +%p +q! file.txt
从标题中删除样式标签并打印已解析的输出:
curl -s http://example.com/ | ex -s +'/<style.*/norm nvatd' +%p -cq! /dev/stdin
使用多个复杂规则解析html:
ex -V1 $PAGE <<-EOF
" Correcting missing protocol, see: https://github.com/wkhtmltopdf/wkhtmltopdf/issues/2359 "
%s,'//,'http://,ge
%s,"//,"http://,ge
" Correcting relative paths, see: https://github.com/wkhtmltopdf/wkhtmltopdf/issues/2359 "
%s,[^,]\zs'/\ze[^>],'http://www.example.com/,ge
%s,[^,]\zs"/\ze[^>],"http://www.example.com/,ge
" Remove the margin on the left of the main block. "
%s/id="doc_container"/id="doc_container" style="min-width:0px;margin-left : 0px;"/g
%s/<div class="outer_page/<div style="margin: 0px;" class="outer_page/g
" Remove useless html elements. "
/<div.*id="global_header"/norm nvatd
wq " Update changes and quit.
EOF
甚至更多的例子:
也可以看看:
file
从第二个命令行中删除第二个。