in reply to Re: doughnut charts with gd:graph
in thread doughnut charts with gd:graph
Thanks for your reply since I want to complete this
I understand the below code
my @df = `df /var`;
I can print df in this way..
print @df;
it shows in this way
Filesystem 1K-blocks Used Available Use% Mounted on /dev/mapper/vg_mail-lv_var 94959436 1415576 88713448 2% /var
Pls explain this below code? I think you split 2 things. (i.e - white spaces and another). Difficult to understand. Sir, Pls explain in detail. Your effort will NOT got to waste.
my ($used, $free) = (split (/\s+/, $df[1]))[2,3]; #HOW TO PRINT THE OU +TPUT?
Finally, How to print $used and $free
the below lines will NOT?
I think the above one line can be written in these 2 lines? AM I RIGHT?print $used; print $free;
my $used = (split (/\s+/, $df[1]))[2]; my $free = (split (/\s+/, $df[1]))[3];
Waiting for yor REPLY...
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: doughnut charts with gd:graph
by hippo (Archbishop) on Jul 25, 2018 at 13:06 UTC | |
by Tux (Canon) on Jul 26, 2018 at 11:31 UTC | |
by theravadamonk (Scribe) on Jul 26, 2018 at 10:30 UTC |