Beginner Linux & Shell Scripting
Q15 / 100

What is the purpose of the pipe symbol "|" in a shell command?

Correct! Well done.

Incorrect.

The correct answer is B) It takes the output of one command and uses it as the input to another command

B

Correct Answer

It takes the output of one command and uses it as the input to another command

Explanation

The pipe "|" connects the standard output of the command on its left to the standard input of the command on its right, enabling command chaining like "ls | grep .txt".

Progress
15/100