in reply to Re: \q quote-matching operator
in thread \q quote-matching operator
You could use the single-quote as your -e delimiter. :-)You can? I seem to have trouble trying to do that.
In cmd.exe you can escape quotes with either a quote or a backslash,C:\>perl -e 'print "foo\n"' Can't find string terminator "'" anywhere before EOF at -e line 1.
C:\>perl -e "print '""'" " C:\>perl -e "print '\"'" "
|
---|