Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: $` $' in bash??

by ikegami (Patriarch)
on Jul 20, 2011 at 18:01 UTC ( [id://915697]=note: print w/replies, xml ) Need Help??


in reply to $` $' in bash??

There's no issue with «`» (within single quotes). The problem is with «'».

Ways of making «foo$'bar$`baz» into a bash literal:

foo\$\'bar\$\`baz "foo\$'bar\$`baz" 'foo$'"'"'bar$`baz' 'foo$'\''bar$`baz'

Of course, you could use avoid using «'», starting by writing code that's much clearer.

perl -lanE'$F[1]=~/(.*?)(chr\w[^_]?)_.*\b(.*)/; say "$1\t$1$2$3\t$3"'

The pattern looks very fishy. /.*\b.*/? There are clearer and safer ways of writing that. I have no idea what you are trying to match with that.

Log In?
Username:
Password:

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

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

    No recent polls found