The | specifies that all stdout is to be piped as stdin into the next command.
Examples: cd /lib ls -l | more ls -l | grep readIn the context of input-output chaining with pipes
tee: Read from stdin and write to stdout and files.
Example: cd /lib ls -l | tee /tmp/All_ls_Output | grep read