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

Re: perl one liner print columns 2.. last

by philipbailey (Curate)
on Jan 04, 2013 at 19:03 UTC ( [id://1011701]=note: print w/replies, xml ) Need Help??


in reply to perl one liner print columns 2.. last

Works for me. I would suggest that you show us (an extract) of your input file.

echo 1 2 3 4 5 6|perl -lane 'print $F[1]..$F[-1]' 23456

Are your columns separated by whitespace?

Update: Of course, this doesn't work, for the reasons given by LanX in his reply to this (too hasty) posting.

Replies are listed 'Best First'.
Re^2: perl one liner print columns 2.. last
by LanX (Saint) on Jan 04, 2013 at 19:24 UTC
    Sorry thats wrong, your test data is misleading you :)

    you are calculating the numerical range between 2 and 6, which by accident was your input.

    now change the input in between:

    > echo - 2 - - - 6|perl -lane 'print $F[1]..$F[-1]' 23456

    but a slice works: =)

    > echo - 2 - - - 6|perl -lane 'print @F[1..$#F]' 2---6

    Cheers Rolf

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (2)
As of 2024-04-25 21:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found