If, at a MS-Dos command prompt, the following code:
perl -e 'foreach $n (@INC) { print "$n\n";}'
results in the following error:
Can't find string terminator "'" anywhere before EOF at -e line 1.
then try the following code instead:
perl -e "foreach $n (@INC) { print \"$n\n\";}"
Return to article...[an error occurred while processing this directive]