Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^2: Question on DeFoy's range operator example

by BillKSmith (Monsignor)
on Jan 27, 2019 at 23:06 UTC ( [id://1229040]=note: print w/replies, xml ) Need Help??


in reply to Re: Question on DeFoy's range operator example
in thread Question on DeFoy's range operator example

Windows requires double quotes and does not allow the backslash.

>perl -le "\$, = q( ); print q(a)..q(z)" Experimental aliasing via reference not enabled at -e line 1. >perl -le "$, = q( ); print q(a)..q(z)" a b c d e f g h i j k l m n o p q r s t u v w x y z >perl -le '$, = q( ); print q(a)..q(z)' Can't find string terminator "'" anywhere before EOF at -e line 1. >perl -le '\$, = q( ); print q(a)..q(z)' Can't find string terminator "'" anywhere before EOF at -e line 1.
Bill

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (8)
As of 2024-03-28 12:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found