Skip to content

Instantly share code, notes, and snippets.

@gelosi
Created February 18, 2021 17:22
Show Gist options
  • Save gelosi/17902007a6b32badb40bd2e001283e0e to your computer and use it in GitHub Desktop.
Save gelosi/17902007a6b32badb40bd2e001283e0e to your computer and use it in GitHub Desktop.
sample of auto-updating terminal status command
# this can be useful to monitor directories which are updated at some interval
# or you just curious :)
while; do; clear; tree mygitrepo/.git; du -sh mygitrepo; sleep 1; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment