]> mj.ucw.cz Git - home-hw.git/blob - convert-crlf
d1a15fbfa8fb92556cc40cf6430586d747ee5774
[home-hw.git] / 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         recode utf-8/crlf..utf-8 $a
6 done