-
What does the following command line signify?
prog1|prog2
-
- It runs both the programs, pipes output of prog2 to input of prog1
- It runs prog1 first, prog2 second
- It runs prog2 first, prog1 second
- It runs both the programs, pipes output of prog1 to input of prog2
- None of these
Correct Option: D
It runs both the programs, pipes output of prog1 to input of prog2