home *** CD-ROM | disk | FTP | other *** search
/ Acorn User 10 / AU_CD10.iso / Updates / Perl / Non-RPC / !Perl / scripts / TestSystem < prev    next >
Text File  |  1997-02-21  |  285b  |  9 lines

  1. system( '*/@.perl -e "print \"hello world\\\\n\\";"' );
  2. system( '*/@.perl -e "print \"hello with meta*chars\\\\n\";"' );
  3. system( "*echo", "hello", "from", "exec" );
  4.  
  5. $rc = system( '*/@.perl -e "print \"Exiting with 2\\\\n\"; exit 2;"' );
  6.  
  7. print "\$rc = $rc \n";
  8. print "Still here!\n";
  9.