On my Sun box I can execute the following statement in Korn Shell...
$x = `
grep orderNumber $(find /home/homedepot/ECOM/prod/in -mtime -1) | wc -l`;
The error I get is...
It looks like a bourne shell issue. Is there any way I can
execute that command in Korn shell with perl?