Vertical bar
Pipe data between programs. More information: https://gnu.org/software/bash/manual/bash.html#Pipelines.
- Pipe
stdout
tostdin
:
command |
command
- Pipe both
stdout
andstderr
tostdin
:
command |&
command
Pipe data between programs. More information: https://gnu.org/software/bash/manual/bash.html#Pipelines.
stdout
to stdin
:command |
command
stdout
and stderr
to stdin
:command |&
command