> >You can't use "'" as delimiter on Windows. Try:
> >
> >     perl -e "print \"test\n\""
> 

Or always use q() and qq() for one liners:

perl -e"print qq(test\n)"

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to