hcloud, hd, he*: add Korean translation (#14517)

This commit is contained in:
HoJeong Im
2024-11-02 22:14:52 +09:00
committed by GitHub
parent c5d694b17a
commit 916a7d963d
13 changed files with 298 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# hexdump
> ASCII, 10진수, 16진수, 8진수 덤프.
> 더 많은 정보: <https://manned.org/hexdump>.
- 파일의 16진수 표현을 출력하고, 중복된 줄을 '\*'로 변경:
`hexdump {{경로/대상/파일}}`
- 입력 오프셋을 16진수로 표시하고 해당 ASCII 표현을 두 열로 표시:
`hexdump -C {{경로/대상/파일}}`
- 파일의 16진수 표현을 표시하지만, 입력의 n바이트만 해석:
`hexdump -C -n{{바이트_수}} {{경로/대상/파일}}`
- 중복된 줄을 '\*'로 변경하지 않음:
`hexdump --no-squeezing {{경로/대상/파일}}`