perldesire has asked for the wisdom of the Perl Monks concerning the following question:
In Parse::Dmidecode there is a function named as keywords() which accepts the following keys,
bios
system
baseboard
chassis
processor
memory
cache
connector
slot
my @list_keywords = $dmi->keywords("slot"); //Its giving same output +for slot, processor and memory etc for my $keyword (@list_keywords) { printf("%s => %s\n", $keyword, $dmi->keyword($keyword) ); }
I could not find any difference in the output for different keywords.. $dmi->keywords("slot"), $dmi->keywords("processor") , $dmi->keywords("memory") giving mostly same output..
Kindly help me to understand the difference.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: parse dmidecode keywords
by NetWallah (Canon) on Jun 30, 2009 at 13:10 UTC | |
|
Re: parse dmidecode keywords
by Khen1950fx (Canon) on Jun 30, 2009 at 18:22 UTC |