Yes -- better!
It is faster and seems easier to understand. I changed it to:
#!/usr/bin/perl
use warnings;
use strict;
open my $PIPE, '-|', 'system_profiler SPApplicationsDataType 2> /dev/n
+ull' or die "Cannot open pipe from 'system_profiler' $!";
my ( $i, $p, @apps );
while ( <$PIPE> ) {
$apps[$i] .= $_;
$i += /\A\s{4}\S.*:\Z/;
$p += /\A\s+Kind: PowerPC\Z/;
}
close $PIPE or warn $! ? "Error closing 'system_profiler' pipe: $!"
: "Exit status $? from 'system_profiler'";
foreach (@apps) {
print if /Kind: PowerPC/s;
}
print "$i applications, $p PowerPC applications\n\n";
Question: is there a difference between
/\A\s{4}\S.*:\Z/ and
/^\s{4}\S.*:$/?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
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.