up vote 18 down vote favorite
8
share [g+] share [fb]

How can I start an interactive console for Perl, similar to the irb command for Ruby or python for Python?

link|improve this question

feedback

15 Answers

up vote 16 down vote accepted

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

link|improve this answer
I wasn't aware of the perlconsole you linked to - looks nice! – Brian Phillips Sep 16 '08 at 15:45
feedback

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.

link|improve this answer
I think it was assumed I didn't understand the question. I guess I'll edit it a bit. ;-) – Jon Ericson Sep 16 '08 at 17:56
feedback

I think you're asking about a REPL (Read, Evaluate, Print, Loop) interface to perl. There are a few ways to do this:

  • Matt Trout has an article that describes how to write one
  • Adriano Ferreira has described some options
  • and finally, you can hop on IRC at irc.perl.org and try out one of the eval bots in many of the popular channels. They will evaluate chunks of perl that you pass to them.
link|improve this answer
feedback

You can always just drop into the built-in debugger and run commands from there.

   perl -d -e 1
link|improve this answer
feedback

I wrote a script I call "psh":

#! /usr/bin/perl

while (<>) {
  chomp;
  my $result = eval;
  print "$_ = $result\n";
}

Whatever you type in, it evaluates in Perl:

> gmtime(2**30)
gmtime(2**30) = Sat Jan 10 13:37:04 2004

> $x = 'foo'
$x = 'foo' = foo

> $x =~ s/o/a/g
$x =~ s/o/a/g = 2

> $x
$x = faa
link|improve this answer
feedback

perl -d is your friend:

% perl -de 0
link|improve this answer
feedback

Perl doesn't have a console but the debugger can be used as one. At a command prompt, type perl -de 1. (The value "1" doesn't matter, it's just a valid statement that does nothing.)

There are also a couple of options for a Perl shell.

For more information read perlfaq3.

link|improve this answer
feedback

I use the command line as a console:

$ perl -e 'print "JAPH\n"'

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.

link|improve this answer
feedback

re.pl from Devel::REPL

link|improve this answer
feedback

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.

link|improve this answer
feedback

Also look for ptkdb on CPAN: http://search.cpan.org/search?query=ptkdb&mode=all

link|improve this answer
feedback

Sepia and PDE have also own REPLs (for GNU Emacs).

link|improve this answer
feedback

See also Stylish REPL (for GNU Emacs) http://blog.jrock.us/articles/Stylish%20REPL.pod

link|improve this answer
feedback

I always did:

perl -wlne'eval;print$@if$@'

With 5.10, I've switched to:

perl -wnE'say eval()//$@'
link|improve this answer
feedback

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!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.