mirror of
https://github.com/cuberite/polarssl.git
synced 2025-08-05 11:46:12 -04:00
6 lines
118 B
Perl
Executable File
6 lines
118 B
Perl
Executable File
#!/usr/bin/env perl
|
|
# Backward compatibility redirection
|
|
my $py = $0;
|
|
$py =~ s/\.pl$/.py/;
|
|
exec 'python3', $py, @ARGV
|