gr*: add Korean translation (#14425)

This commit is contained in:
HoJeong Im
2024-10-31 01:50:50 +09:00
committed by GitHub
parent be260e9e0d
commit 49c7b211e2
12 changed files with 252 additions and 0 deletions

View File

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