How can I start an interactive console for Perl, similar to the irb command for Ruby or python for Python?
|
2
|
|
|
|
|
|
You can use the perl debugger on a trivial program, like so: perl -d -e 1 Alternatively there's software to be more of a console, but I haven't used it: http://www.sukria.net/perlconsole.html |
||
|
|
|
I always did:
With 5.10, I've switched to:
|
||
|
|
|
|
See also Stylish REPL (for GNU Emacs) http://blog.jrock.us/articles/Stylish%20REPL.pod |
||
|
|
|
|
Sepia and PDE have also own REPLs (for GNU Emacs). |
||
|
|
|
|
re.pl from Devel::REPL |
||
|
|
|
|
I wrote a script I call "psh":
Whatever you type in, it evaluates in Perl:
|
||
|
|
|
|
Not only did Matt Trout write an article about a REPL, he actually wrote one - Devel::REPL I've used it a bit and it works fairly well, and it's under active development. BTW, I have no idea why someone modded down the person who mentioned using "perl -e" from the console. This isn't really a REPL, true, but it's fantastically useful, and I use it all the time. |
||
|
|
|
I think you're asking about a REPL (Read, Evaluate, Print, Loop) interface to perl. There are a few ways to do this:
|
|||
|
|
|
|
Also look for ptkdb on CPAN: http://search.cpan.org/search?query=ptkdb&mode=all |
||
|
|
|
|
Perl doesn't have a console but the debugger can be used as one. At a command prompt, type There are also a couple of options for a Perl shell. For more information read perlfaq3. |
||
|
|
|
|
You could look into psh here: http://www.focusresearch.com/gregor/sw/psh/ It's a full on shell (you can use it in replacement of bash for example), but uses perl syntax.. so you can create methods on the fly etc. |
||
|
|
|
|
I use the command line as a console:
Then I can use my bash history to get back old commands. This does not preserve state, however. This form is most useful when you want to test "one little thing" (like when answering Perl questions). Often, I find these commands get scraped verbatim into a shell script or makefile. |
|||
|
|
|
|
There isn't an interactive console for Perl built in like Python does. You can however use the Perl Debugger to do debugging related things. You turn it on with the -d option, but you might want to check out 'man perldebug' to learn about it. After a bit of googling, there is a separate project that implements a Perl console which you can find at http://www.sukria.net/perlconsole.html. Hope this helps! Frank Wiles Revolution Systems www.revsys.com |
||
|
|
|
|
You can always just drop into the built-in debugger and run commands from there.
|
||
|
|
|
|
|
||
|
|
