ex
( vi
의 시각적 모드 ex
임)를 사용하여 비 대화식으로 파일을 편집하려면 첫 번째 파일을 읽은 후 vi 명령을 실행할 수있는 매개 변수 +{command}
또는 -c {command}
매개 변수를 사용할 수 있습니다.
은 ex
(유사한 표준 명령 줄 편집기입니다 ed
).
이 또한 vipe
의 일부인 사용되어야한다 (Vim은 명령 파이프 편집기) moreutils
패키지와는 것입니다 당신이 프로그램 사이의 파이프되고있는 유닉스 파이프 라인 및 편집 데이터의 중간에 편집기를 실행할 수 있습니다.
예
파이프를 사용한 간단한 표준 입력 및 출력은이 쉘 구문으로 달성 할 수 있습니다.
$ 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
두 번째 명령 줄에서 두 번째 명령을 내릴 수 있다고 생각합니다 .