Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

It helps to mention which shell you're using if you us to help with its quoting mechanism. Looks like bash or similar.

You want bash to do

system( q{perl}, q{-lane}, q{print "John's";}, );

The first two parts are no-brainers since they contain no characters that are special to bash. Let's focus on the third.

  • You could escape every special character
    print\ \"John\'s\";
  • You could use double quotes and escape the characters that are special in double quotes.
    "print \"John's\";"
  • You can't use single quotes, at least not alone. There's no way to include single quotes in a single-quoted bash literal. What you can do is use different mechanisms for different parts of the string (as in q{print "John}.q{'}.q{s";})
    'print "John'"'"'s";' 'print "John'\''s";'
So
perl -lane 'print "John'\''s";'

Note that the following is also acceptable to Perl:

system( q{perl}, q{-lane}.q{print "John's";}, );

That could be written as

perl '-laneprint "John'\''s";'
but it looks better as
perl -lane'print "John'\''s";'

In reply to Re: Perl one-liner Quotes help by ikegami
in thread Perl one-liner Quotes help by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (6)
As of 2024-04-16 05:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found