1
0
mirror of https://github.com/janet-lang/janet synced 2024-09-30 16:00:40 +00:00
janet/tools/removecr.janet
2019-10-19 19:11:13 -04:00

8 lines
278 B
Plaintext

# Remove carriage returns from file. Since piping things on
# windows may add bad line endings, we can just force removal
# with this script.
(def fname ((dyn :args) 1))
(def input (slurp fname))
(def new-source (string/replace-all "\r" "" source))
(spit fname new-source :wb)