ramiroencinas / System-Stats-DISKUsage

Raku module - Provides Disk Usage Stats
Artistic License 2.0
0 stars 1 forks source link

System::Stats::DISKUsage

Build Status

Raku module - Provides Disk Usage Stats.

OS Supported:

Installing the module

zef update
zef install System::Stats::DISKUsage

Example Usage:

use v6;
use System::Stats::DISKUsage;

my %diskUsage = DISK_Usage();

say "\nDisk Usage per second:\n";
say "Drive BytesRead BytesWritten\n";

for %diskUsage.sort(*.key)>>.kv -> ($drive, $usage) {

    printf "%-5s %-9d %-d\n", $drive, $usage<bytesreadpersec>, $usage<byteswrittenpersec>;  

}

TODO: