mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2025-12-06 07:12:32 +01: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
|