committed by
GitHub
1 changed files with 8 additions and 0 deletions
@ -0,0 +1,8 @@ |
|||
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) |
Loading…
Reference in new issue