13 lines
318 B
Markdown
Raw Normal View History

# Vertical bar
> 프로그램 간에 데이터를 파이핑합니다.
> 더 많은 정보: <https://gnu.org/software/bash/manual/bash.html#Pipelines>.
- `stdout``stdin`으로 파이핑:
`{{명령어}} | {{명령어}}`
- `stdout``stderr` 모두를 `stdin`으로 파이핑:
`{{명령어}} |& {{명령어}}`