summaryrefslogtreecommitdiff
path: root/lib/python2.7/Tools/scripts/fixps.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/Tools/scripts/fixps.py')
-rw-r--r--lib/python2.7/Tools/scripts/fixps.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/python2.7/Tools/scripts/fixps.py b/lib/python2.7/Tools/scripts/fixps.py
new file mode 100644
index 0000000..df7ae31
--- /dev/null
+++ b/lib/python2.7/Tools/scripts/fixps.py
@@ -0,0 +1,33 @@
+#!/usr/bin/env python2
+
+# Fix Python script(s) to reference the interpreter via /usr/bin/env python.
+# Warning: this overwrites the file without making a backup.
+
+import sys
+import re
+
+
+def main():
+ for filename in sys.argv[1:]:
+ try:
+ f = open(filename, 'r')
+ except IOError, msg:
+ print filename, ': can\'t open :', msg
+ continue
+ line = f.readline()
+ if not re.match('^#! */usr/local/bin/python', line):
+ print filename, ': 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 filename, ':', repr(line)
+ f = open(filename, "w")
+ f.write(line)
+ f.write(rest)
+ f.close()
+
+if __name__ == '__main__':
+ main()