1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 22:22:07 +02:00
tldr/pages.ko/common/greater-than.md
2024-10-30 22:20:50 +05:30

633 B

Greater than

출력을 파일로 리디렉션. 더 많은 정보: https://gnu.org/software/bash/manual/bash.html#Redirecting-Output.

  • stdout을 파일로 리디렉션:

{{명령어}} > {{경로/대상/파일}}

  • 파일에 추가:

{{명령어}} >> {{경로/대상/파일}}

  • stdoutstderr을 모두 파일로 리디렉션함:

{{명령어}} &> {{경로/대상/파일}}

  • stdoutstderr을 모두 /dev/null로 리디렉션하여, 터미널 출력을 깨끗하게 유지:

{{명령어}} &> /dev/null

  • 파일 내용을 지우거나 새로운 빈 파일을 생성:

> {{경로/대상/파일}}