which xxd xxd --version

| Task | Alternative Command | |------|---------------------| | Hex dump of a file | hexdump -C file.bin or od -An -tx1 file.bin | | Convert hex to binary | xxd -r → no direct alternative; try perl -e 'print pack("H*", <>)' | | View binary as ASCII | strings file.bin |