2018-03-21 20:02:06 +01:00
|
|
|
#!/usr/bin/env python
|
2019-07-12 08:46:20 +02:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
2018-03-21 20:02:06 +01:00
|
|
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
for path in sys.argv[1:] or sys.stdin.read().splitlines():
|
|
|
|
with open(path, 'rb') as path_fd:
|
|
|
|
contents = path_fd.read()
|
|
|
|
|
|
|
|
if b'\r' in contents:
|
|
|
|
print('%s: use "\\n" for line endings instead of "\\r\\n"' % path)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|