Skip to content

Instantly share code, notes, and snippets.

@Freccia
Created June 29, 2017 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Freccia/750ed5850c2d6016cc9792a8f2cd60c5 to your computer and use it in GitHub Desktop.
Save Freccia/750ed5850c2d6016cc9792a8f2cd60c5 to your computer and use it in GitHub Desktop.
Hexdump firsts blocks of drive
#!/bin/sh
DRIVE="/dev/disk2"
BLOCK_SIZE="512"
N_BLOCKS="100"
dd if=$DRIVE bs=$BLOCK_SIZE count=$N_BLOCKS | hexdump -C
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment