저는 다음 구조의 txt 파일을 작업 중입니다.
; $16
dc.b $FF
; $17
dc.b $FA
dc.b $65, $05
dc.b $F6
dc.w $0032 ; => Event1
dc.b $FF
; $18
dc.b $F4
dc.b $0F
dc.b "text"
dc.b $FC
dc.b "more text"
dc.b $FD
dc.b "more and more text"
dc.b $FD
dc.b "more and more and more text"
다음과 같이 파일의 모든 따옴표 사이에 포함된 모든 텍스트를 새 txt 파일로 복사하는 방법을 찾고 있습니다.
text
more text
more and more text
more and more and more text
어떤 아이디어가 있나요?
미리 감사드립니다
답변1
간단한 방법은 다음과 같습니다 grep
.
grep -oP '(").*(")' txt
P
Perl 호환 정규식을 사용하고 o
일치하는 것만 인쇄하십시오.
산출:
"text"
"more text"
"more and more text"
"more and more and more text"