3
0
mirror of https://github.com/pragma-/pbot.git synced 2025-07-23 22:07:28 +02:00
pbot/applets/trans.pl
2025-07-19 08:54:38 -07:00

27 lines
515 B
Prolog
Executable File
Vendored

#!/usr/bin/env perl
# quick and dirty interface to https://github.com/soimort/translate-shell
use warnings;
use strict;
if (not @ARGV) {
print "Usage: trans [options] [source]:[targets] <word or phrase>\n";
exit;
}
my $args = quotemeta "@ARGV";
$args =~ s/\\([ :-])/$1/g;
$args =~ s/^\s+|\s+$//g;
my $opts = '-j -no-ansi -no-autocorrect';
$opts .= ' -b' unless $args =~ /^-/;
if ($args =~ m/-pager/) {
print "I don't think so.\n";
exit;
}
my $result = `trans $opts $args`;
print "$result\n";