2011-01-20 15:56:30 +00:00
|
|
|
#!/bin/sh
|
2011-12-14 07:40:48 +00:00
|
|
|
# Use this script formats all text files to use consistent line endings
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# Written by Mark Vejvoda <mark_vejvoda@hotmail.com>
|
|
|
|
# Copyright (c) 2011 Mark Vejvoda under GNU GPL v3.0+
|
2011-01-20 15:56:30 +00:00
|
|
|
|
|
|
|
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 {} \;
|
|
|
|
|