Skip to content

Instantly share code, notes, and snippets.

@morten-olsen
Created October 30, 2014 12:54
Show Gist options
  • Select an option

  • Save morten-olsen/83cf331b30976068d919 to your computer and use it in GitHub Desktop.

Select an option

Save morten-olsen/83cf331b30976068d919 to your computer and use it in GitHub Desktop.
Random utils
delay=5; prev=`du -sk .git/ | cut -f 1`; sleep $delay; while true; do cur=`du -sk .git/ | cut -f 1`; expr \( $cur - $prev \) / $delay ; prev=$cur; sleep $delay; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment