How can I start an interactive console for Perl? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T13:24:01Z http://stackoverflow.com/feeds/question/73667 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl 5 How can I start an interactive console for Perl? ibz 2008-09-16T15:35:59Z 2008-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#73685 2 Answer by Brian Phillips for How can I start an interactive console for Perl? Brian Phillips 2008-09-16T15:37:37Z 2008-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#73689 2 Answer by clintp for How can I start an interactive console for Perl? clintp 2008-09-16T15:37:59Z 2008-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#73698 0 Answer by Frank Wiles for How can I start an interactive console for Perl? Frank Wiles 2008-09-16T15:38:36Z 2008-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#73703 5 Answer by Daniel Papasian for How can I start an interactive console for Perl? Daniel Papasian 2008-09-16T15:38:53Z 2008-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#73742 0 Answer by Jon Ericson for How can I start an interactive console for Perl? Jon Ericson 2008-09-16T15:42:39Z 2008-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#73765 1 Answer by shelfoo for How can I start an interactive console for Perl? shelfoo 2008-09-16T15:44:53Z 2008-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#73780 0 Answer by Michael Carman for How can I start an interactive console for Perl? Michael Carman 2008-09-16T15:46:40Z 2008-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#73868 0 Answer by runrig for How can I start an interactive console for Perl? runrig 2008-09-16T15:53:20Z 2008-09-16T15:53:20Z <p>Also look for ptkdb on CPAN: <a href="http://search.cpan.org/search?query=ptkdb&amp;mode=all" rel="nofollow">http://search.cpan.org/search?query=ptkdb&amp;mode=all</a></p> http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/73896#73896 7 Answer by amoore for How can I start an interactive console for Perl? amoore 2008-09-16T15:57:19Z 2008-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#74119 10 Answer by Dave Rolsky for How can I start an interactive console for Perl? Dave Rolsky 2008-09-16T16:16:11Z 2008-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#76154 2 Answer by raldi for How can I start an interactive console for Perl? raldi 2008-09-16T19:44:29Z 2008-09-16T19:44:29Z <p>I wrote a script I call "psh":</p> <pre><code>#! /usr/bin/perl while (&lt;&gt;) { chomp; my $result = eval; print "$_ = $result\n"; } </code></pre> <p>Whatever you type in, it evaluates in Perl:</p> <pre><code>&gt; gmtime(2**30) gmtime(2**30) = Sat Jan 10 13:37:04 2004 &gt; $x = 'foo' $x = 'foo' = foo &gt; $x =~ s/o/a/g $x =~ s/o/a/g = 2 &gt; $x $x = faa </code></pre> http://stackoverflow.com/questions/73667/how-can-i-start-an-interactive-console-for-perl/80890#80890 1 Answer by Johny for How can I start an interactive console for Perl? Johny 2008-09-17T07:45:32Z 2008-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#80900 0 Answer by Johny for How can I start an interactive console for Perl? Johny 2008-09-17T07:47:13Z 2008-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#90390 0 Answer by Johny for How can I start an interactive console for Perl? Johny 2008-09-18T05:54:52Z 2008-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#91565 0 Answer by ysth for How can I start an interactive console for Perl? ysth 2008-09-18T10:48:08Z 2008-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>