More In Depth Bash Commands Flashcards

1
Q

What command searches a specified file and returns all lines in the file containing a specified string?

Searching for a certain keyword in a file

A

grep

grep OS updates.txt

grep is the command.
OS is the arguement we are looking for
updates.txt is the file we are looking into

Searching for a certain keyword in a file

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

What sends the standard output of one command as standard input to another command for further processing?

A

| (Piping)

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