Tôi đang cố gắng giữ dòng đầu tiên khớp với tìm kiếm chuỗi và xóa tất cả các dòng sau có cùng chuỗi.
Có ý kiến gì không?
$ cat example-input.txt
Question one|some other text
Question two|dfgdfgdfgvd
Question one| dfg dfg dfg dfg
Question three|aa bb cc dd eee
Question one|zz aa BB yy qq
Question four|zz xx yy qq
cat example-input.txt | someuniqprogramoroptions "Question one" > example-output.txt
$ cat example-output.txt
Question one|some other text
Question two|dfgdfgdfgvd
Question three|aa bb cc dd eee
Question four|zz xx yy qq
$
CẬP NHẬT: cảm ơn vì mã awk G-Man, bạn là người đàn ông!
$ cat example-input.txt | ./awk-firstlines-only.sh
Question one|some other text
Question two|dfgdfgdfgvd
Question three|aa bb cc dd eee
Question four|zz xx yy qq