home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MISC / GNU / PL4019AS.ZIP / PERLSH < prev    next >
Encoding:
Text File  |  1991-11-28  |  404 b   |  19 lines

  1. #!/usr/bin/perl
  2.  
  3.  
  4. # Poor man's perl shell.
  5.  
  6.  
  7. # Simply type two carriage returns every time you want to evaluate.
  8. # Note that it must be a complete perl statement--don't type double
  9. #  carriage return in the middle of a loop.
  10.  
  11.  
  12. $/ = '';    # set paragraph mode
  13. $SHlinesep = "\n";
  14. while ($SHcmd = <>) {
  15.     $/ = $SHlinesep;
  16.     eval $SHcmd; print $@ || "\n";
  17.     $SHlinesep = $/; $/ = '';
  18. }
  19.