Skip to content

Instantly share code, notes, and snippets.

@rightfold
Created November 12, 2014 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rightfold/ff331333c472cb8598ee to your computer and use it in GitHub Desktop.
Save rightfold/ff331333c472cb8598ee to your computer and use it in GitHub Desktop.
my @history = map 0, 0 .. 40;
for (;;) {
my ($cpu) = average_cpu_usage(1);
push @history, $cpu->{system};
print "\e[2J\e[H";
for (@history[-40 .. -1]) {
print ' ' x ($_ * 100) . ".\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment