]> mj.ucw.cz Git - home-hw.git/blob - bin/convert-crlf
Auto: Meditation mode turned off
[home-hw.git] / bin / convert-crlf
1 #!/bin/sh
2 set -e
3 for a in $(find . -name Makefile -o -name '*.c' -o -name '*.h' -o -name '*.s' -o -name '*.ld') ; do
4         echo $a
5         sed -i 's/\r//' $a
6 done