Files
tldr/pages/common/vertical-bar.md
T
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}}