If you’ve managed a number of Linux servers, then you probably know what it’s like to have several terminal windows running top on your desktop. There is a better way to do this. You can display load average in real time in your terminal titlebar. Use this script: #!/usr/bin/perl -w use strict; $|++; my $host=`/bin/hostname`;... Continue reading
The post How to display load average in terminal titlebar appeared first on Jovica Ilic.