Skip to content

Instantly share code, notes, and snippets.

@alibitek
Created November 27, 2013 08:56
Show Gist options
  • Save alibitek/7672686 to your computer and use it in GitHub Desktop.
Save alibitek/7672686 to your computer and use it in GitHub Desktop.
Make dd print (output) progress
# Make dd spit output
sudo kill -10 $(pgrep -l '^dd$' | awk -F' ' '{print $1}')
sudo watch -n 10 kill -USR1 $(pgrep -l '^dd$' | awk -F' ' '{print $1}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment