summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/perl/perlsh
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/perl/perlsh')
-rw-r--r--gnu/usr.bin/perl/perlsh15
1 files changed, 15 insertions, 0 deletions
diff --git a/gnu/usr.bin/perl/perlsh b/gnu/usr.bin/perl/perlsh
new file mode 100644
index 00000000000..2b2cccd0641
--- /dev/null
+++ b/gnu/usr.bin/perl/perlsh
@@ -0,0 +1,15 @@
+#!/usr/bin/perl
+
+# Poor man's perl shell.
+
+# Simply type two carriage returns every time you want to evaluate.
+# Note that it must be a complete perl statement--don't type double
+# carriage return in the middle of a loop.
+
+$/ = "\n\n"; # set paragraph mode
+$SHlinesep = "\n";
+while ($SHcmd = <>) {
+ $/ = $SHlinesep;
+ eval $SHcmd; print $@ || "\n";
+ $SHlinesep = $/; $/ = '';
+}