Skip to content

Instantly share code, notes, and snippets.

View DryLabRebel's full-sized avatar
🙂
Chillin

Geoff English, PhD. DryLabRebel

🙂
Chillin
View GitHub Profile
@DryLabRebel
DryLabRebel / crlf.py
Created November 11, 2025 22:39 — 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