“Bash Grep только возвращает первый матч” Ответ

Bash Grep только возвращает первый матч

# Basic syntax:
grep -m 1 "pattern" input_file.txt
# Where -m is the maximum number of matching lines to return, i.e. stop
#	reading the file after m matches
# Note, this is more efficient than piping to head because there you
#	always read the whole file even if you're only looking for m matches
Charles-Alexandre Roy

Греп первый матч

Just combine grep with head command for filtering  only the first match as:
grep "match" | head -n 1   #Change 1 to not only match first but further matches
Armandres

Ответы похожие на “Bash Grep только возвращает первый матч”

Вопросы похожие на “Bash Grep только возвращает первый матч”

Больше похожих ответов на “Bash Grep только возвращает первый матч” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования