|
Hello Eric,
You need the pattern matching...
$line = `some
command`;
chomp
$line;
@fields = split (/
/, $line);
foreach ($fields)
{
print "$_\n";
}
Peter Nguyen
|
- A silly (I think) question Eric Hennessey
- Re: A silly (I think) question $Bill Luebkert
- Re: A silly (I think) question Alfred Wheeler
- Re: A silly (I think) question Peter Nguyen
- Re: A silly (I think) question Jonathan Chan
- RE: A silly (I think) question Messenger, Mark
- RE: A silly (I think) question Gerber, Christopher J
- RE: A silly (I think) question Eric Hennessey
- RE: A silly (I think) question John Deretich
