vote up 5 vote down star
2

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

flag

15 Answers

vote up 5 vote down check

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|flag
I wasn't aware of the perlconsole you linked to - looks nice! – Brian Phillips Sep 16 '08 at 15:45
vote up 2 vote down

perl -d is your friend:

% perl -de 0
link|flag
vote up 2 vote down

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

   perl -d -e 1
link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 7 vote down

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|flag
vote up 10 vote down

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|flag
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
vote up 2 vote down

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|flag
vote up 1 vote down

re.pl from Devel::REPL

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

I always did:

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

With 5.10, I've switched to:

perl -wnE'say eval()//$@'
link|flag

Your Answer

Get an OpenID
or

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