Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Escaping characters in one-liners

by mrpeabody (Friar)
on Mar 12, 2005 at 18:19 UTC ( [id://438967]=note: print w/replies, xml ) Need Help??


in reply to Escaping characters in one-liners

On all platforms, you can avoid using particular quoting characters inside your program by using the generic quoting constructs q() and qq().

For instance, to single-quote something in bash:

perl -we'my $c=400; print q(not interpolated: $c)'

This is even more useful in Win32, where you need to avoid the much more common doublequotes:

perl -we"my $c=400; print qq(interpolated: $c)"

You can also delimit on something besides parentheses, but parens are easy to read and not disallowed by anything, so I rarely bother.

See perlop under q/STRING/.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://438967]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (5)
As of 2024-04-19 04:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found