13 lines
156 B
Perl
13 lines
156 B
Perl
package Systemexec;
|
|
require Exporter;
|
|
@ISA = qw(Exporter);
|
|
@EXPORT = qw(system exec);
|
|
@EXPORT_OK = qw();
|
|
sub system($$@) {
|
|
1;
|
|
}
|
|
sub exec($$@) {
|
|
1;
|
|
}
|
|
1;
|