mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-10 04:08:57 +08:00
6 lines
122 B
Bash
Executable File
6 lines
122 B
Bash
Executable File
#!/usr/bin/env bash
|
|
for ext in c cpp h; do
|
|
find -iname \*.$ext | while read X; do dos2unix -- "$X" || exit 1; done
|
|
done
|
|
|