diff --git a/pages/linux/hexdump.md b/pages/linux/hexdump.md new file mode 100644 index 0000000000..b0463261cf --- /dev/null +++ b/pages/linux/hexdump.md @@ -0,0 +1,15 @@ +# hexdump + +> An ASCII, decimal, hexadecimal, octal dump. + +- Print the hexadecimal representation of a file: + +`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}}` diff --git a/pages/osx/hexdump.md b/pages/osx/hexdump.md new file mode 100644 index 0000000000..b0463261cf --- /dev/null +++ b/pages/osx/hexdump.md @@ -0,0 +1,15 @@ +# hexdump + +> An ASCII, decimal, hexadecimal, octal dump. + +- Print the hexadecimal representation of a file: + +`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}}`