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
2
Q
What sends the standard output of one command as standard input to another command for further processing?
A
| (Piping)