pbot/modules/compiler_vm/languages/ksh.pm

25 lines
550 B
Perl
Raw Normal View History

2015-01-20 19:13:09 +01:00
#!/usr/bin/env perl
use warnings;
use strict;
package ksh;
use parent '_default';
sub initialize {
my ($self, %conf) = @_;
$self->{sourcefile} = 'prog.ksh';
$self->{execfile} = 'prog.ksh';
$self->{default_options} = '';
$self->{cmdline} = 'ksh $options $sourcefile';
$self->{cmdline_opening_comment} = ": <<'____CMDLINE____'\n";
$self->{cmdline_closing_comment} = "____CMDLINE____\n";
$self->{output_opening_comment} = ": << '____OUTPUT____'\n";
$self->{output_closing_comment} = "____OUTPUT____\n";
2015-01-20 19:13:09 +01:00
}
1;