Multiple choice

Feed the STDOUT of the program on the left as STDIN to the program on the right.

  1. <

  2. >

  3. <>

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The pipe operator (|) connects the standard output of the command on its left to the standard input of the command on its right. This is a fundamental feature of Unix shell pipelines.