mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-03-31 10:20:45 +00: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
|