Você pode simplesmente usar grep
:
NAME
grep, egrep, fgrep, rgrep - print lines matching a pattern
SYNOPSIS
grep [OPTIONS] PATTERN [FILE...]
grep [OPTIONS] [-e PATTERN | -f FILE] [FILE...]
DESCRIPTION
grep searches the named input FILEs (or standard input if no files are named, or if a single
hyphen-minus (-) is given as file name) for lines containing a match to the given PATTERN. By
default, grep prints the matching lines.
Execute o seguinte comando para obter a saída desejada (ex-chrome):
top | grep chrome
Aqui estamos usando grep
com os pipelines |
so top
& grep
é executado paralelamente; top
output dado a grep
(como entrada) e grep chrome
filtra as linhas correspondentes chrome
até top
parar.