/ Published in: Bash
Expand |
Embed | Plain Text
for f in *; do tr '\015' '\012' < $f > $f.new && mv $f.new $f; done
You need to login to post a comment.
for f in *; do tr '\015' '\012' < $f > $f.new && mv $f.new $f; done
You need to login to post a comment.