1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/pages.ko/linux/head.md
Managor a70b923d8f
*: add option placeholders to translations (#15933)
Co-authored-by: Darío Hereñú <magallania@gmail.com>
2025-03-19 00:36:34 +02:00

598 B

head

파일의 첫 부분을 출력합니다. 더 많은 정보: https://www.gnu.org/software/coreutils/manual/html_node/head-invocation.html.

  • 파일의 처음 몇 줄을 출력:

head {{[-n|--lines]}} {{개수}} {{경로/대상/파일}}

  • 파일의 처음 몇 바이트를 출력:

head {{[-c|--bytes]}} {{개수}} {{경로/대상/파일}}

  • 파일의 마지막 몇 줄을 제외하고 출력:

head {{[-n|--lines]}} -{{개수}} {{경로/대상/파일}}

  • 파일의 마지막 몇 바이트를 제외하고 출력:

head {{[-c|--bytes]}} -{{개수}} {{경로/대상/파일}}