mirror of
https://github.com/kevin-DL/full-stack-fastapi-postgresql.git
synced 2026-01-12 18:25:15 +00:00
9 lines
179 B
Python
9 lines
179 B
Python
from pathlib import Path
|
|
|
|
|
|
path: Path
|
|
for path in Path(".").glob("**/*.sh"):
|
|
data = path.read_bytes()
|
|
lf_data = data.replace(b"\r\n", b"\n")
|
|
path.write_bytes(lf_data)
|