1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/greater-than.md

25 lines
633 B
Markdown
Raw Normal View History

2024-10-31 01:50:50 +09:00
# Greater than
> 출력을 파일로 리디렉션.
> 더 많은 정보: <https://gnu.org/software/bash/manual/bash.html#Redirecting-Output>.
- `stdout`을 파일로 리디렉션:
`{{명령어}} > {{경로/대상/파일}}`
- 파일에 추가:
`{{명령어}} >> {{경로/대상/파일}}`
- `stdout``stderr`을 모두 파일로 리디렉션함:
`{{명령어}} &> {{경로/대상/파일}}`
- `stdout``stderr`을 모두 `/dev/null`로 리디렉션하여, 터미널 출력을 깨끗하게 유지:
`{{명령어}} &> /dev/null`
- 파일 내용을 지우거나 새로운 빈 파일을 생성:
`> {{경로/대상/파일}}`