All,
I 've an output from the system comand as follows.
* /xxx/aaaa /yyy/bbbb
* /www/cccc /vvv/dddd
* /uuu/eeee /ttt/ffff
: : :
I want to parse this output into an array and split them and process each
entry. Essentially, I want to parse the output of a command to an array and
process each entry in the array.
My code is
my @vob_list = system ("cleartool lsvob") ;
foreach $entry (@vob_list) {
print " This is first '$entry'" ;
}
I am a beginner, so bear with me if there are blunders.
Thanks in advance for any help.
Kailash