Pipes
Let us have an example.
use who > user.txt
use wc -l < user.txt
In the above the who and wc -l makes the use of standard output and input stream.
They use the disk files.
In order to avoid this.
The operator that is | (pipe) is used.
who | wc -l