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

20
pages.ko/common/hexyl.md Normal file
View File

@@ -0,0 +1,20 @@
# hexyl
> 터미널용 간단한 16진수 뷰어. 다양한 카테고리의 바이트를 구별하기 위해 컬러 출력을 사용.
> 더 많은 정보: <https://github.com/sharkdp/hexyl>.
- 파일의 16진수 표현을 출력:
`hexyl {{경로/대상/파일}}`
- 파일의 처음 n 바이트의 16진수 표현을 출력:
`hexyl -n {{n}} {{경로/대상/파일}}`
- 파일의 바이트 512부터 1024를 출력:
`hexyl -r {{512}}:{{1024}} {{경로/대상/파일}}`
- 1024번째 바이트부터 512 바이트를 출력:
`hexyl -r {{1024}}:+{{512}} {{경로/대상/파일}}`