mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
13 lines
261 B
Markdown
13 lines
261 B
Markdown
![]() |
# Vertical bar
|
||
|
|
||
|
> Pipe data between programs.
|
||
|
> More information: <https://gnu.org/software/bash/manual/bash.html#Pipelines>.
|
||
|
|
||
|
- Pipe `stdout` to `stdin`:
|
||
|
|
||
|
`{{command}} | {{command}}`
|
||
|
|
||
|
- Pipe both `stdout` and `stderr` to `stdin`:
|
||
|
|
||
|
`{{command}} |& {{command}}`
|