Skip to content

Instantly share code, notes, and snippets.

View SonGokussj4's full-sized avatar

SonGokussj4 SonGokussj4

View GitHub Profile
@SonGokussj4
SonGokussj4 / crlf.py
Created April 18, 2019 10:27 — forked from jonlabelle/crlf.py
Replace CRLF (windows) line endings with LF (unix) line endings in files.
#!/usr/bin/env python
"""Replace line breaks, from one format to another."""
from __future__ import print_function
import argparse
import glob
import os
import sys