mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-22 20:09:43 +01:00
Add modules/trans.pl
This commit is contained in:
parent
e8838c84e8
commit
ba769dc446
24
modules/trans.pl
vendored
Executable file
24
modules/trans.pl
vendored
Executable file
@ -0,0 +1,24 @@
|
||||
#!/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';
|
||||
$opts .= ' -b' unless $args =~ /^-/;
|
||||
|
||||
my $result = `trans $opts $args`;
|
||||
|
||||
$result =~ s/\e\[\d+m//g;
|
||||
|
||||
print "$result\n";
|
Loading…
Reference in New Issue
Block a user