mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-19 09:44:30 +01:00
16 lines
387 B
Plaintext
16 lines
387 B
Plaintext
|
#!/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 = $/; $/ = '';
|
||
|
}
|