Help for this page
system($check . $elt); if (1 == $? >> 8) { chomp $elt; print blah blah; }
my $count; foreach $i (@$elt) { # @$elt is an abbreviation of @{$elt} -- see + perlreftut system($check . $i); # using $i instead of $elt ... } } ## use $count here