1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 21:22:06 +02:00
tldr/pages.ko/common/less-than.md
2024-11-07 09:27:55 +09:00

589 B

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 |와 동일한 효과를 가짐):

{{명령어}} <<< {{문자열}}