Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Favourite One-liners?

by calin (Deacon)
on Jun 28, 2005 at 09:17 UTC ( [id://470537]=note: print w/replies, xml ) Need Help??


in reply to Favourite One-liners?

I always use Perl when I need to do some calculation.

$ perl -le 'print <arithmetic expression here>'

The debugger is handy for iterative calculations:

$ perl -de0

Update - tip: Be careful with constructs like:

print (5 + 4) * 3;

This is equivalent to (print 5 + 4) * 3, probably not what you want.

Replies are listed 'Best First'.
Re^2: Favourite One-liners?
by kaif (Friar) on Jun 28, 2005 at 14:21 UTC

    My most common one-liner, which accomplishes the "arithmetic evaluation" goal, is perl -ple'$_="> ".eval' (Déjà vu?)

      Other than the inherent awesomeness of producing a Perl REPL in under 25 characters, I don't see why one would prefer this one-liner to the even shorter

      perl -de1
      True, with the debugger one has to suffer the aggravation of having to prepend p or x to expressions if one wants to see the evaluated output, but in return one gets plenty of features like (off the top of my head):
      1. Readline with history (this one alone saves so much typing that it more than compensates for having to type those extra p's and x's);
      2. The option of paged output;
      3. The Joy of x, including not only pretty printing of complex data structures (with optional paging), but also the ability to specify the depth the pretty-printing;

      the lowliest monk

Log In?
Username:
Password:

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

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

    No recent polls found