3
0
mirror of https://github.com/pragma-/pbot.git synced 2025-02-11 03:50:53 +01:00

28 lines
652 B
Perl
Raw Normal View History

2015-01-18 18:36:48 -08:00
#!/usr/bin/env perl
# SPDX-FileCopyrightText: 2021-2024 Pragmatic Software <pragma78@gmail.com>
2021-07-10 15:00:22 -07:00
# SPDX-License-Identifier: MIT
2015-01-18 18:36:48 -08:00
use warnings;
use strict;
package Languages::bash;
use parent 'Languages::_default';
2015-01-18 18:36:48 -08:00
sub initialize {
my ($self, %conf) = @_;
$self->{sourcefile} = 'prog.bash';
$self->{execfile} = 'prog.bash';
$self->{default_options} = '';
$self->{cmdline} = 'bash $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-18 18:36:48 -08:00
}
1;