mirror of
				https://github.com/Mbed-TLS/mbedtls.git
				synced 2025-10-30 10:45:34 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			163 B
		
	
	
	
		
			Perl
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			163 B
		
	
	
	
		
			Perl
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env perl
 | |
| # Backward compatibility redirection
 | |
| my $py = $0;
 | |
| $py =~ s/\.pl$/.py/;
 | |
| exec 'python3', $py, @ARGV;
 | |
| print STDERR "$0: python3: $!\n";
 | |
| exit 127;
 |