How can I start an interactive console for Perl? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T13:24:01Zhttp://stackoverflow.com/feeds/question/73667http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl5How can I start an interactive console for Perl?ibz2008-09-16T15:35:59Z2008-12-27T13:22:13Z
<p>How can I start an interactive console for Perl, similar to the irb command for Ruby or python for Python?</p>
http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/73685#736852Answer by Brian Phillips for How can I start an interactive console for Perl?Brian Phillips2008-09-16T15:37:37Z2008-09-16T15:37:37Z<p><code>perl -d</code> is your friend:</p>
<pre><code>% perl -de 0</code></pre>
http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/73689#736892Answer by clintp for How can I start an interactive console for Perl?clintp2008-09-16T15:37:59Z2008-09-16T15:37:59Z<p>You can always just drop into the built-in debugger and run commands from there.</p>
<pre><code> perl -d -e 1
</code></pre>
http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/73698#736980Answer by Frank Wiles for How can I start an interactive console for Perl?Frank Wiles2008-09-16T15:38:36Z2008-09-16T15:38:36Z<p>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. </p>
<p>After a bit of googling, there is a separate project that implements a Perl console which you can find at <a href="http://www.sukria.net/perlconsole.html" rel="nofollow">http://www.sukria.net/perlconsole.html</a>.</p>
<p>Hope this helps! </p>
<p>Frank Wiles
Revolution Systems <a href="http://www.revsys.com" rel="nofollow">www.revsys.com</a></p>
http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/73703#737035Answer by Daniel Papasian for How can I start an interactive console for Perl?Daniel Papasian2008-09-16T15:38:53Z2008-09-16T15:38:53Z<p>You can use the perl debugger on a trivial program, like so:</p>
<p>perl -d -e 1</p>
<p>Alternatively there's software to be more of a console, but I haven't used it: <a href="http://www.sukria.net/perlconsole.html" rel="nofollow">http://www.sukria.net/perlconsole.html</a></p>
http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/73742#737420Answer by Jon Ericson for How can I start an interactive console for Perl?Jon Ericson2008-09-16T15:42:39Z2008-09-16T17:59:11Z<p>I use the command line as a console:</p>
<pre><code>$ perl -e 'print "JAPH\n"'
</code></pre>
<p>Then I can use my <em>bash</em> history to get back old commands. This does not preserve state, however.</p>
<p>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.</p>
http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/73765#737651Answer by shelfoo for How can I start an interactive console for Perl?shelfoo2008-09-16T15:44:53Z2008-09-16T15:44:53Z<p>You could look into psh here: <a href="http://www.focusresearch.com/gregor/sw/psh/" rel="nofollow">http://www.focusresearch.com/gregor/sw/psh/</a></p>
<p>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.</p>
http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/73780#737800Answer by Michael Carman for How can I start an interactive console for Perl?Michael Carman2008-09-16T15:46:40Z2008-09-16T15:46:40Z<p>Perl doesn't have a console but the debugger can be used as one. At a command prompt, type <code>perl -de 1</code>. (The value "1" doesn't matter, it's just a valid statement that does nothing.)</p>
<p>There are also a couple of options for a <a href="http://perldoc.perl.org/perlfaq3.html#Is-there-a-Perl-shell%3f" rel="nofollow">Perl shell</a>.</p>
<p>For more information read <a href="http://perldoc.perl.org/perlfaq3.html" rel="nofollow">perlfaq3</a>.</p>
http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/73868#738680Answer by runrig for How can I start an interactive console for Perl?runrig2008-09-16T15:53:20Z2008-09-16T15:53:20Z<p>Also look for ptkdb on CPAN:
<a href="http://search.cpan.org/search?query=ptkdb&mode=all" rel="nofollow">http://search.cpan.org/search?query=ptkdb&mode=all</a></p>
http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/73896#738967Answer by amoore for How can I start an interactive console for Perl?amoore2008-09-16T15:57:19Z2008-12-27T13:22:13Z<p>I think you're asking about a REPL (Read, Evaluate, Print, Loop) interface to perl. There are a few ways to do this:</p>
<ul>
<li>Matt Trout has <a href="http://chainsawblues.vox.com/library/post/a-perl-read-excute-print-loop-repl.html" rel="nofollow">an article</a> that describes how to write one</li>
<li>Adriano Ferreira <a href="http://use.perl.org/article.pl?sid=07/08/30/1729255" rel="nofollow">has described some options</a></li>
<li>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.</li>
</ul>
http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/74119#7411910Answer by Dave Rolsky for How can I start an interactive console for Perl?Dave Rolsky2008-09-16T16:16:11Z2008-09-16T16:16:11Z<p>Not only did Matt Trout write an article about a REPL, he actually wrote one - <a href="http://search.cpan.org/dist/Devel-REPL" rel="nofollow">Devel::REPL</a></p>
<p>I've used it a bit and it works fairly well, and it's under active development.</p>
<p>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.</p>
http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/76154#761542Answer by raldi for How can I start an interactive console for Perl?raldi2008-09-16T19:44:29Z2008-09-16T19:44:29Z<p>I wrote a script I call "psh":</p>
<pre><code>#! /usr/bin/perl
while (<>) {
chomp;
my $result = eval;
print "$_ = $result\n";
}
</code></pre>
<p>Whatever you type in, it evaluates in Perl:</p>
<pre><code>> 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
</code></pre>
http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/80890#808901Answer by Johny for How can I start an interactive console for Perl?Johny2008-09-17T07:45:32Z2008-09-17T07:45:32Z<p>re.pl from Devel::REPL</p>
http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/80900#809000Answer by Johny for How can I start an interactive console for Perl?Johny2008-09-17T07:47:13Z2008-09-17T07:47:13Z<p>Sepia and PDE have also own REPLs (for GNU Emacs).</p>
http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/90390#903900Answer by Johny for How can I start an interactive console for Perl?Johny2008-09-18T05:54:52Z2008-09-18T05:54:52Z<p>See also Stylish REPL (for GNU Emacs) <a href="http://blog.jrock.us/articles/Stylish%20REPL.pod" rel="nofollow">http://blog.jrock.us/articles/Stylish%20REPL.pod</a></p>
http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/91565#915650Answer by ysth for How can I start an interactive console for Perl?ysth2008-09-18T10:48:08Z2008-09-18T10:48:08Z<p>I always did:</p>
<pre><code>perl -wlne'eval;print$@if$@'
</code></pre>
<p>With 5.10, I've switched to:</p>
<pre><code>perl -wnE'say eval()//$@'
</code></pre>