dosbox-x/dos2unix.sh
2015-08-16 01:50:59 -07:00

6 lines
114 B
Bash
Executable File

#!/bin/bash
for ext in c cpp h; do
find -iname \*.$ext | while read X; do dos2unix -- "$X" || exit 1; done
done