| 
									
										
										
										
											1999-04-09 14:56:35 +00:00
										 |  |  | #!/usr/bin/env python | 
					
						
							| 
									
										
										
										
											1992-12-09 23:14:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-11-27 19:43:49 +00:00
										 |  |  | # Fix Python script(s) to reference the interpreter via /usr/bin/env python. | 
					
						
							| 
									
										
										
										
											1999-04-09 14:56:35 +00:00
										 |  |  | # Warning: this overwrites the file without making a backup. | 
					
						
							| 
									
										
										
										
											1992-12-09 23:14:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | import sys | 
					
						
							| 
									
										
										
										
											1999-04-09 14:56:35 +00:00
										 |  |  | import re | 
					
						
							| 
									
										
										
										
											1992-12-09 23:14:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def main(): | 
					
						
							| 
									
										
										
										
											2001-01-17 08:48:39 +00:00
										 |  |  |     for file in sys.argv[1:]: | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             f = open(file, 'r') | 
					
						
							|  |  |  |         except IOError, msg: | 
					
						
							|  |  |  |             print file, ': can\'t open :', msg | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         line = f.readline() | 
					
						
							|  |  |  |         if not re.match('^#! */usr/local/bin/python', line): | 
					
						
							|  |  |  |             print file, ': not a /usr/local/bin/python script' | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         rest = f.read() | 
					
						
							|  |  |  |         f.close() | 
					
						
							|  |  |  |         line = re.sub('/usr/local/bin/python', | 
					
						
							|  |  |  |                       '/usr/bin/env python', line) | 
					
						
							|  |  |  |         print file, ':', `line` | 
					
						
							|  |  |  |         f = open(file, "w") | 
					
						
							|  |  |  |         f.write(line) | 
					
						
							|  |  |  |         f.write(rest) | 
					
						
							|  |  |  |         f.close() | 
					
						
							| 
									
										
										
										
											1992-12-09 23:14:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | main() |