Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Resource for command line "one-liner" interpretation

by Util (Priest)
on May 15, 2003 at 21:36 UTC ( [id://258531]=note: print w/replies, xml ) Need Help??


in reply to Resource for command line "one-liner" interpretation

B::Deparse can translate a one-liner into a (almost) regular program. To use it, add -MO=Deparse to the beginning of perl's command line.

Using the Perl section of graff's example:

perl -MO=Deparse -ne 'chomp;$s+=$_ if($_>10240);END{print "$s\n"}'
This gives us:
LINE: while (defined($_ = <ARGV>)) { chomp $_; $s += $_ if $_ > 10240; sub END { print "$s\n"; } ; } -e syntax OK
which we can tighten up to be:
while (<>) { chomp; $s += $_ if $_ > 10240; } print "$s\n";

Log In?
Username:
Password:

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

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

    No recent polls found