Help for this page

Select Code to Download


  1. or download this
    my $ret = system(executable);
    
  2. or download this
    perl -e "..."
    
  3. or download this
    
    #include "stdio.h"
    ...
        return 0;
    }
    
  4. or download this
    #!/usr/bin/perl
    use strict;
    ...
    exit $rc>>8;
    
  5. or download this
    D:\rcs>perl rcs.pl 0
    
    ...
    Hello World!
    Returning with code -1
    i = -10
    
  6. or download this
    my $rc = system ("$cmd");
    
  7. or download this
    my $rc = system ($cmd);
    
  8. or download this
    my $rc = system $cmd;