grep Flashcards

1
Q

Procurar pela linha contendo a string ‘linux’ no arquivo file.txt

A

grep linux file.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Procurar pela linha contendo a string ‘linux’ no arquivo file.txt. Exibindo ‘linux’ de forma destacada

A

grep –color linux file.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Procurar pela linha contendo a string ‘jp’ na saída de um comando no caso ‘cat passwd’

A

cat passwd | grep jp

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Procurar pela linha contendo a string ‘linux’ no arquivo file.txt sem sensibilidade se é maiúscula ou mínuscula

A

grep linux -i file.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Procurar pela linha contendo a string ‘linux’ nos arquivos a.txt e b.txt

A

grep linux a.txt b.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Procurar pela linha contendo a string ‘linux’ ou ‘jp’ no arquivo file.txt

A

grep ‘linux|jp’ file.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Procurar pela linha contendo a string ‘linux’ somente e em todos os arquivos .txt

A

grep linux *.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Procurar pela linha que não esteja contendo a string ‘linux’ no arquivo file.txt

A

grep -v linux file.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Procurar pela linha contendo a expressão regular [0-9] no arquivo file.txt

A

grep ‘[0-9]’ file.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Procurar pelos arquivos e a linha contendo a string ‘linux’ no diretório ‘data’

A

grep -r “linux” data/

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Procurar pela linha contendo a string ‘linux’ no arquivo file.txt. Contendo o número da linha encontrada

A

grep -n linux file.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Exibir o número de vezes que foi encontrado uma linha contendo a string ‘linux’ no arquivo file.txt

A

grep -c linux file.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Procurar pela linha contendo exatamente a string ‘linux’ no arquivo file.txt. E não strings derivadas como ‘openlinux’ ‘linuxers’

A

grep -w linux file.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Procurar pela linha que seja exatamente igual a string ‘linux forever’ no arquivo file.txt. Ou seja, ‘linux forever!’ não deve ser encontrada.

A

grep -x ‘linux forever’ file.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Procurar pela linha contendo que comece com a string ‘linux’ no arquivo file.txt

A

grep ^linux file.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Procurar pela linha termine com a string ‘linux’ no arquivo file.txt

A

grep linux$ file.txt

17
Q

Procura pela string ‘linux’ no arquivo file.txt. Ou seja se a linha com a string existir, retornar somente ‘linux’ e não a linha toda

A

grep -o linux file.txt

18
Q

Procurar pela linha contendo a string ‘linux’ no arquivo file.txt. Exibindo a linha encontrada com três linhas anteriores a ela

A

grep -B 3 linux file.txt

19
Q

Procurar pela linha contendo a string ‘linux’ no arquivo file.txt. Exibindo a linha encontrada com três linhas posteriores a ela

A

grep -A 3 linux file.txt

20
Q

Procurar pela linha contendo a string ‘linux’ no arquivo file.txt. Exibindo a linha encontrada com três linhas anteriores e mais três linhas posteriores a ela

A

grep -C 3 linux file.txt

21
Q

Procurar pela linha contendo a string ‘linux’ ou a string ‘jp’ usando sem usar expressão regular no arquivo file.txt.

A

grep -e linux -e jp file.txt

22
Q

Procurar pela linha contendo a string ‘linux’ no arquivos em data/. Exibindo somente o nome dos arquivos onde foi encontrada

A

grep -lr linux data/

23
Q

Procurar pela linha contendo a string ‘linux’ no arquivo file.txt. Contendo a posição da linha encontrada

A

grep -b linux file.txt

24
Q

Procurar pela linha contendo a string ‘linux’ ou a string ‘jp’ com expressão regular, mas sem ter que escapar caracteres especiais no arquivo file.txt.

A

egrep ‘linux|jp’ file.txt

25
Q

Procurar pela linha contendo a string ‘linux’ E a string ‘jp’ no arquivo file.txt.

A

grep -E ‘linux.*jp’ file.txt