blob: ed6727639cd8926ed9cb3c7f24a19e52da6bcd94 [file] [log] [blame]
fbrosson533407a2018-04-04 21:44:29 +00001#!/usr/bin/env perl
Gilles Peskinebf359c72019-07-27 23:56:04 +02002# Backward compatibility redirection
3my $py = $0;
4$py =~ s/\.pl$/.py/;
Gilles Peskine6cf31272019-07-29 23:42:50 +02005exec 'python3', $py, @ARGV;
6print STDERR "$0: python3: $!\n";
Gilles Peskinea103c182019-09-05 20:29:22 +02007exec 'python', $py, @ARGV;
8print STDERR "$0: python: $!\n";
Gilles Peskine6cf31272019-07-29 23:42:50 +02009exit 127;