3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-02 01:18:40 +02:00
pbot/modules/compiler_vm/languages/sh.pm
2019-06-14 18:49:33 -07:00

25 lines
546 B
Perl
Executable File

#!/usr/bin/env perl
use warnings;
use strict;
package sh;
use parent '_default';
sub initialize {
my ($self, %conf) = @_;
$self->{sourcefile} = 'prog.sh';
$self->{execfile} = 'prog.sh';
$self->{default_options} = '';
$self->{cmdline} = 'sh $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";
}
1;