hexdump

An ASCII, decimal, hexadecimal, octal dump. More information: <https://manned.org/hexdump>.

Install

All systems
curl cmd.cat/hexdump.sh
Debian Debian
apt-get install bsdmainutils
Ubuntu
apt-get install bsdmainutils
Alpine
apk add util-linux
Arch Arch Linux
pacman -S util-linux
image/svg+xml Kali Linux
apt-get install bsdmainutils
CentOS
yum install util-linux
Fedora
dnf install util-linux
Windows (WSL2)
sudo apt-get update sudo apt-get install bsdmainutils
OS X
brew install util-linux
Raspbian
apt-get install bsdmainutils
Docker
docker run cmd.cat/hexdump hexdump powered by Commando

An ASCII, decimal, hexadecimal, octal dump. More information: <https://manned.org/hexdump>.

  • Print the hexadecimal representation of a file, replacing duplicate lines by '*':
    hexdump path/to/file
  • Display the input offset in hexadecimal and its ASCII representation in two columns:
    hexdump -C path/to/file
  • Display the hexadecimal representation of a file, but interpret only n bytes of the input:
    hexdump -C -nnumber_of_bytes path/to/file
  • Don't replace duplicate lines with '*':
    hexdump --no-squeezing path/to/file

© tl;dr; authors and contributors