in reply to Using Perl to detect RAM amount
#!/usr/bin/perl use Linux::MemInfo; %hash = get_mem_info(); foreach(sort keys %hash) { print "$_ = $hash{$_} \n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Using Perl to detect RAM amount
by Tommy (Chaplain) on Jan 06, 2004 at 21:50 UTC | |
|
Re: Re: Using Perl to detect RAM amount
by dwhite20899 (Friar) on Jan 27, 2004 at 13:32 UTC |