Commit 0ec60af6 authored by Guido van Rossum's avatar Guido van Rossum

Changed so that it replaces /usr/local/bin/python with /usr/bin/env python.

parent fa82c02a
#! /usr/local/bin/python #! /usr/bin/env python
# Fix Python script(s) to reference the interpreter in /usr/local/bin. # Fix Python script(s) to reference the interpreter via /usr/bin/env python.
import sys import sys
import regex import regex
...@@ -15,13 +15,13 @@ def main(): ...@@ -15,13 +15,13 @@ def main():
print file, ': can\'t open for update' print file, ': can\'t open for update'
continue continue
line = f.readline() line = f.readline()
if regex.match('^#! */usr/local/python', line) < 0: if regex.match('^#! */usr/local/bin/python', line) < 0:
print file, ': not a /usr/local/python script' print file, ': not a /usr/local/bin/python script'
f.close() f.close()
continue continue
rest = f.read() rest = f.read()
line = regsub.sub('/usr/local/python', \ line = regsub.sub('/usr/local/bin/python',
'/usr/local/bin/python', line) '/usr/bin/env python', line)
print file, ':', `line` print file, ':', `line`
f.seek(0) f.seek(0)
f.write(line) f.write(line)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment