mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-08 19:32:39 +08:00
6 lines
114 B
Bash
Executable File
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
|
|
|