Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: s/// + tr/// when perl -ni -e on semi-colons in one liners echoed to files

by Anonymous Monk
on Nov 18, 2012 at 12:37 UTC ( [id://1004401]=note: print w/replies, xml ) Need Help??


in reply to s/// + tr/// when perl -ni -e on semi-colons in one liners echoed to files

Well, -n doesn't print, but -p does print :)

$ perl -le " print qq{a;b;c;d} " a;b;c;d $ perl -le " print qq{a;b;c;d} " | perl -ne " tr/;/\n/ ; " $ perl -le " print qq{a;b;c;d} " | perl -pe " tr/;/\n/ ; " a b c d
  • Comment on Re: s/// + tr/// when perl -ni -e on semi-colons in one liners echoed to files
  • Download Code

Replies are listed 'Best First'.
Re^2: s/// + tr/// when perl -ni -e on semi-colons in one liners echoed to files
by Don Coyote (Hermit) on Nov 18, 2012 at 12:47 UTC

    ok, thanks for the quick reply. It seems I was assuming -i edits 'in place'. And -n / -p only controlled if STDOUT was printed to or not.(i think it was SED).

    Just trying to analyse more complex stuff while tripping over the 'simple' stuff...

        Yes, maybe one for the chatterbox on reflection.

        I'm reading a lot about a lot, packages,modules,symbols, today. Then this invocation frustration arose. Couldn't see the wood for the trees.

        These one liners do seem to have a way of over extending themselves.

Log In?
Username:
Password:

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

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

    No recent polls found