hexdump
An ASCII, decimal, hexadecimal, octal dump.
- Print the hexadecimal representation of a file, replacing duplicate lines by '*':
hexdump {file}
- Display the input offset in hexadecimal and its ASCII representation in two columns:
hexdump -C {file}
- Display the hexadecimal representation of a file, but interpret only n bytes of the input:
hexdump -C -n{number_of_bytes} {file}
- Don't replace duplicate lines with '*':
hexdump --no-squeezing {file}
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).