This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Keybase proof | |
| I hereby claim: | |
| * I am savager on github. | |
| * I am russsavage (https://keybase.io/russsavage) on keybase. | |
| * I have a public key ASCuN50kwOs4xxqBL-u5RZXChvF_4AtcIy6XorLB3vKbfwo | |
| To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # mac bit for bit copy of usb drive from one to another with progress | |
| #find disk numbers | |
| diskutil list | |
| # unmount both disks first | |
| diskutil unmountDisk /dev/disk4 | |
| diskutil unmountDisk /dev/disk7 | |
| # then copy | |
| sudo dd if=/dev/rdisk4 of=/dev/rdisk7 bs=1m & pid=$! | |