mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-02 10:09:32 +01:00
22 lines
358 B
Perl
Executable File
22 lines
358 B
Perl
Executable File
#!/usr/bin/perl -w
|
|
|
|
# quick and dirty by :pragma
|
|
|
|
|
|
if ($#ARGV < 0) {
|
|
print "For help with cdecl, see http://linux.die.net/man/1/cdecl\n";
|
|
die;
|
|
}
|
|
|
|
my $command = join(' ', @ARGV);
|
|
|
|
$command = quotemeta($command);
|
|
$command =~ s/\\ / /g;
|
|
#print "[$command]\n";
|
|
my $result = `/usr/bin/cdecl -c $command`;
|
|
|
|
chomp $result;
|
|
$result =~ s/\n/, /g;
|
|
|
|
print $result;
|