All,
I have the following snippet of perl code:
This command works fine from the shell prompt, but within my perl script nothing is returned into @results?? Any ideas on why this is the case...and what to do about it?
Thanks in advance!
I have the following snippet of perl code:
Code:
@results = `make abc.exe 2>&1 | grep -P '((undefined reference to|\.exe)\s)'`;
Thanks in advance!