
hexdump
List of commands for hexdump:
-
hexdump:tldr:6568e hexdump: Display the input offset in hexadecimal and its ASCII representation in two columns.$ hexdump -C ${filename}try on your machineexplain this command
-
hexdump:tldr:76759 hexdump: Don't replace duplicate lines with '*'.$ hexdump --no-squeezing ${filename}try on your machineexplain this command
-
hexdump:tldr:dd142 hexdump: Print the hexadecimal representation of a file, replacing duplicate lines by '*'.$ hexdump ${filename}try on your machineexplain this command
-
hexdump:tldr:dd557 hexdump: Display the hexadecimal representation of a file, but interpret only n bytes of the input.$ hexdump -C -n${number_of_bytes} ${filename}try on your machineexplain this command