gr*: add Korean translation (#14425)
This commit is contained in:
24
pages.ko/common/greater-than.md
Normal file
24
pages.ko/common/greater-than.md
Normal 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`
|
||||
|
||||
- 파일 내용을 지우거나 새로운 빈 파일을 생성:
|
||||
|
||||
`> {{경로/대상/파일}}`
|
Reference in New Issue
Block a user