mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 02:45:59 +02:00
13 lines
318 B
Markdown
13 lines
318 B
Markdown
![]() |
# Vertical bar
|
||
|
|
||
|
> 프로그램 간에 데이터를 파이핑합니다.
|
||
|
> 더 많은 정보: <https://gnu.org/software/bash/manual/bash.html#Pipelines>.
|
||
|
|
||
|
- `stdout`을 `stdin`으로 파이핑:
|
||
|
|
||
|
`{{명령어}} | {{명령어}}`
|
||
|
|
||
|
- `stdout`과 `stderr` 모두를 `stdin`으로 파이핑:
|
||
|
|
||
|
`{{명령어}} |& {{명령어}}`
|