common/l*: add Korean translation (#14665)

This commit is contained in:
코드싸이
2024-11-07 09:27:55 +09:00
committed by GitHub
parent feb91d75ea
commit ef281bb658
103 changed files with 2279 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# Less than
> 데이터를 `stdin`으로 리다이렉트.
> 더 많은 정보: <https://gnu.org/software/bash/manual/bash.html#Redirecting-Input>.
- 파일을 `stdin`으로 리다이렉트 (`cat file.txt |`와 동일한 효과를 가짐):
`{{명령어}} < {{경로/대상/파일.txt}}`
- 히어 문서를 생성하여 `stdin`으로 전달 (여러 줄 명령 필요):
`{{명령어}} << {{EOF}} <Enter> {{여러_줄_데이터}} <Enter> {{EOF}}`
- 히어 문자열을 생성하여 `stdin`으로 전달 (`echo string |`와 동일한 효과를 가짐):
`{{명령어}} <<< {{문자열}}`