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

Re: one liner - open file and read

by jwkrahn (Abbot)
on Oct 07, 2010 at 17:55 UTC ( [id://864052]=note: print w/replies, xml ) Need Help??


in reply to one liner - open file and read

perl -lne '}{print $.' in.file

Replies are listed 'Best First'.
Re^2: one liner - open file and read
by NetWallah (Canon) on Oct 07, 2010 at 18:07 UTC
    That works, but I don't understand the syntax, or why it works.

    Please enlighten. -- Thanks.

         Syntactic sugar causes cancer of the semicolon.        --Alan Perlis

      perlrun says of -n:

      causes Perl to assume the following loop around your program, which makes it iterate over filename arguments somewhat like sed -n or awk:
      LINE: while (<>) { ... # your program goes here }
      So, perl replaces '...' with jwkrahn's '}{print $.'.

      Make sense now?

        Doh! - yes - thanks.

        No more END{..} in my one-liners.

        Cheers!

             Syntactic sugar causes cancer of the semicolon.        --Alan Perlis

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (7)
As of 2024-04-23 09:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found