dmidecode | perl -le '$o = qr/[^\n]+\n[^\n]+/; $a = join "", <STDIN>;
+$a =~ s/(Socket Designation: RAM($o)Bank($o)Current($o)Type($o)Instal
+led Size: \d[^\n]+\n)/print $1/smge'
There has GOT to be a better way to get the following block of text out of dmidecode...
Socket Designation: RAM socket #0
Bank Connections: 0
Current Speed: Unknown
Type: EDO DIMM
Installed Size: 8192 MB (Single-bank Connection)
...while avoiding these "Not Installed" ones:
Socket Designation: RAM socket #3
Bank Connections: 3
Current Speed: Unknown
Type: DIMM
Installed Size: Not Installed
Enabled Size: Not Installed
Error Status: OK
While I try to come up with a better regex that isn't so dang ugly, do you have any suggestions on improving it?
Update
Somewhat less ugly:
dmidecode | perl -le '$o = qr/[^\n]+\n[^\n]+/; $a = join "", <STDIN>;
+$a =~ s/(Socket Designation: RAM($o){4}Installed Size: \d[^\n]+\n)/pr
+int $1/smge'
Update #2
OK, this seems to be working on both VMware and physical... for future reference. Thanks goes out to everyone who pitched in. This is a big step forward.
dmidecode | perl -e 'undef $/; for ( split /(?<=\n)\n+/, <> ) { print
+if /RAM socket|Memory Device/ && !/(Not|No Module) Installed/ }'
--
Tommy
$ perl -MMIME::Base64 -e 'print decode_base64 "YWNlQHRvbW15YnV0bGVyLm1lCg=="'
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|