Created
November 6, 2011 03:19
-
-
Save alex-endfinger/1342416 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
function printstatus { | |
clear | |
ps auxww |grep " dd " |grep -v grep |awk '{print $2}' |while read pid; do kill -USR1 $pid; done | |
sleep 5 | |
printstatus | |
} | |
printstatus |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment