2017-07-06 17:26:44 +01:00
|
|
|
# xxd
|
|
|
|
|
2017-09-20 16:44:36 +01:00
|
|
|
> Create a hexadecimal representation (hexdump) from a binary file, or vice-versa.
|
2017-07-06 17:26:44 +01:00
|
|
|
|
2017-09-20 16:44:36 +01:00
|
|
|
- Generate a hexdump from a binary file and display the output:
|
2017-07-06 17:26:44 +01:00
|
|
|
|
|
|
|
`xxd {{input_file}}`
|
|
|
|
|
2017-09-20 16:44:36 +01:00
|
|
|
- Generate a hexdump from a binary file and save it as a text file:
|
2017-07-06 17:26:44 +01:00
|
|
|
|
|
|
|
`xxd {{input_file}} {{output_file}}`
|
|
|
|
|
2017-09-20 16:44:36 +01:00
|
|
|
- Display the output with 10 columns of one octet (byte) each:
|
2017-07-06 17:26:44 +01:00
|
|
|
|
2017-09-20 16:44:36 +01:00
|
|
|
`xxd -c {{10}} {{input_file}}`
|
2017-07-06 17:26:44 +01:00
|
|
|
|
2018-03-19 09:14:35 +00:00
|
|
|
- Display output only upto a length of 32 bytes:
|
|
|
|
|
|
|
|
`xxd -l {{32}} {{input_file}}`
|
|
|
|
|
2017-09-20 16:44:36 +01:00
|
|
|
- Display the output in plain mode, without any gaps between the columns:
|
2017-07-06 17:26:44 +01:00
|
|
|
|
|
|
|
`xxd -p {{input_file}}`
|
|
|
|
|
2017-09-20 16:44:36 +01:00
|
|
|
- Revert a plaintext hexdump back into binary, and save it as a binary file:
|
2017-07-06 17:26:44 +01:00
|
|
|
|
|
|
|
`xxd -r -p {{input_file}} {{output_file}}`
|