Skip to content

Instantly share code, notes, and snippets.

@momorientes
Created February 17, 2015 21:23
Show Gist options
  • Save momorientes/3f09fcda9ff6ff66f875 to your computer and use it in GitHub Desktop.
Save momorientes/3f09fcda9ff6ff66f875 to your computer and use it in GitHub Desktop.
ddstick
#!/bin/bash
# give dd output using pv and the correct size parameter
SIZE=`wc -c $1 | cut -d " " -f 1`
dd if=$1 | pv -s $SIZE | sudo dd of=$2
sync
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment