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