1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 22:02:09 +02:00
tldr/pages/common/vertical-bar.md
Managor ac3c978a0f
<, >, |, $: add page (#13846)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
2024-10-01 19:20:05 +02:00

261 B

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}}