in reply to Re^3: diskpart.exe and perl
in thread diskpart.exe and perl
Being a novice to Perl, I sometimes don't know when a question I have may be totally idiotic so I try to keep my questions short. Again, no offense intended.open ( FH , "diskpart rescan|" ) || die ( "Failed to open filehandle.\ +n" ) ; my @inFile = <FH> ; # read all at once into array foreach (@inFile){ print $_."\t"; }
|
|---|