DEBSOURCES
Skip Quicknav
sources / pwdsphinx / 2.0.3-1 / tests / editor.py
123456789
#!/usr/bin/env python import sys with open(sys.argv[1], 'r') as fd: data = fd.read() with open(sys.argv[1], 'w') as fd: fd.write('\n'.join(sorted(data.split('\n'))))