mirror of
https://github.com/glest/glest-source.git
synced 2025-02-24 19:52:25 +01:00
13 lines
361 B
Bash
Executable File
13 lines
361 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd ../../
|
|
find -name "*\.cpp" -exec fromdos -d {} \;
|
|
find -name "*\.c" -exec fromdos -d {} \;
|
|
find -name "*\.h" -exec fromdos -d {} \;
|
|
find -name "*\.txt" -exec fromdos -d {} \;
|
|
find -name "*\.lng" -exec fromdos -d {} \;
|
|
find -name "*\.xml" -exec fromdos -d {} \;
|
|
find -name "*\.ini" -exec fromdos -d {} \;
|
|
find -name "*\.sh" -exec fromdos -d {} \;
|
|
|