linux/h*: add Korean translation (#14705)

This commit is contained in:
코드싸이
2024-11-09 13:27:13 +09:00
committed by GitHub
parent 6acaad1270
commit 65635e8a74
17 changed files with 422 additions and 0 deletions

20
pages.ko/linux/head.md Normal file
View File

@@ -0,0 +1,20 @@
# head
> 파일의 첫 부분을 출력합니다.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/head>.
- 파일의 처음 몇 줄을 출력:
`head --lines {{개수}} {{경로/대상/파일}}`
- 파일의 처음 몇 바이트를 출력:
`head --bytes {{개수}} {{경로/대상/파일}}`
- 파일의 마지막 몇 줄을 제외하고 출력:
`head --lines -{{개수}} {{경로/대상/파일}}`
- 파일의 마지막 몇 바이트를 제외하고 출력:
`head --bytes -{{개수}} {{경로/대상/파일}}`