use warnings; use strict; foreach( `ppm list` ){ chomp $_; next unless( $_ =~ /site/ ); $_ =~ /^\| (.+?) /; print "ppm install $1\n"; }