5 lines
118 B
Perl
Executable file
5 lines
118 B
Perl
Executable file
#!/usr/bin/env perl
|
|
# Backward compatibility redirection
|
|
my $py = $0;
|
|
$py =~ s/\.pl$/.py/;
|
|
exec 'python3', $py, @ARGV
|