mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-23 01:55:32 +02:00
od: update outdated translations (#16659)
This commit is contained in:
parent
4e8c7913a9
commit
d4bc63de72
3 changed files with 11 additions and 11 deletions
|
@ -10,20 +10,20 @@
|
|||
|
||||
- 자세한 모드로 파일 표시, 즉 중복 줄을 `*`로 대체하지 않음:
|
||||
|
||||
`od -v {{경로/대상/파일}}`
|
||||
`od {{[-v|--output-duplicates]}} {{경로/대상/파일}}`
|
||||
|
||||
- 16진수 형식(2바이트 단위)으로 파일 표시, 10진수 형식의 바이트 오프셋:
|
||||
|
||||
`od --format={{x}} --address-radix={{d}} -v {{경로/대상/파일}}`
|
||||
`od {{[-t|--format]}} {{x}} {{[-A|--address-radix]}} {{d}} {{[-v|--output-duplicates]}} {{경로/대상/파일}}`
|
||||
|
||||
- 16진수 형식(1바이트 단위)으로 파일 표시, 4바이트 단위로 줄바꿈:
|
||||
|
||||
`od --format={{x1}} --width={{4}} -v {{경로/대상/파일}}`
|
||||
`od {{[-t|--format]}} {{x1}} {{[-w|--width=]}}4 {{[-v|--output-duplicates]}} {{경로/대상/파일}}`
|
||||
|
||||
- 16진수 형식과 문자 표현으로 파일 표시, 바이트 오프셋은 출력하지 않음:
|
||||
|
||||
`od --format={{xz}} --address-radix={{n}} -v {{경로/대상/파일}}`
|
||||
`od {{[-t|--format]}} {{xz}} {{[-A|--address-radix]}} {{n}} {{[-v|--output-duplicates]}} {{경로/대상/파일}}`
|
||||
|
||||
- 500번째 바이트부터 시작하여 파일의 100바이트만 읽기:
|
||||
|
||||
`od --read-bytes 100 --skip-bytes=500 -v {{경로/대상/파일}}`
|
||||
`od {{[-N|--read-bytes]}} 100 {{[-j|--skip-bytes]}} 500 {{[-v|--output-duplicates]}} {{경로/대상/파일}}`
|
||||
|
|
|
@ -10,20 +10,20 @@
|
|||
|
||||
- Toon bestand in uitgebreide modus, d.w.z. zonder dubbele regels te vervangen door `*`:
|
||||
|
||||
`od -v {{pad/naar/bestand}}`
|
||||
`od {{[-v|--output-duplicates]}} {{pad/naar/bestand}}`
|
||||
|
||||
- Toon bestand in hexadecimale notatie (2-byte eenheden), met byte-offsets in decimale notatie:
|
||||
|
||||
`od --format={{x}} --address-radix={{d}} -v {{pad/naar/bestand}}`
|
||||
`od {{[-t|--format]}} {{x}} {{[-A|--address-radix]}} {{d}} {{[-v|--output-duplicates]}} {{pad/naar/bestand}}`
|
||||
|
||||
- Toon bestand in hexadecimale notatie (1-byte eenheden) en 4 bytes per regel:
|
||||
|
||||
`od --format={{x1}} --width={{4}} -v {{pad/naar/bestand}}`
|
||||
`od {{[-t|--format]}} {{x1}} {{[-w|--width=]}}4 {{[-v|--output-duplicates]}} {{pad/naar/bestand}}`
|
||||
|
||||
- Toon bestand in hexadecimale notatie samen met de tekenweergave, en toon geen byte-offsets:
|
||||
|
||||
`od --format={{xz}} --address-radix={{n}} -v {{pad/naar/bestand}}`
|
||||
`od {{[-t|--format]}} {{xz}} {{[-A|--address-radix]}} {{n}} {{[-v|--output-duplicates]}} {{pad/naar/bestand}}`
|
||||
|
||||
- Lees slechts 100 bytes van een bestand vanaf de 500ste byte:
|
||||
|
||||
`od --read-bytes 100 --skip-bytes=500 -v {{pad/naar/bestand}}`
|
||||
`od {{[-N|--read-bytes]}} 100 {{[-j|--skip-bytes]}} 500 {{[-v|--output-duplicates]}} {{pad/naar/bestand}}`
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
- Display file in hexadecimal format (1-byte units), and 4 bytes per line:
|
||||
|
||||
`od {{[-t|--format]}} {{x1}} {{[-w|--width=]}}{{4}} {{[-v|--output-duplicates]}} {{path/to/file}}`
|
||||
`od {{[-t|--format]}} {{x1}} {{[-w|--width=]}}4 {{[-v|--output-duplicates]}} {{path/to/file}}`
|
||||
|
||||
- Display file in hexadecimal format along with its character representation, and do not print byte offsets:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue