cpython/Tools/scripts/fixps.py

34 lines
693 B
Python
Raw Normal View History

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