mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
8 lines
188 B
Text
8 lines
188 B
Text
|
#!/bin/sh
|
||
|
|
||
|
#
|
||
|
# Change linefeed -> return+linefeed for all VC++ project files
|
||
|
#
|
||
|
|
||
|
find . \( -name "*.dsp" -o -name "*.dsw" \) -print | grep -v "SCCS" | xargs replace '\r\$' '
' '\$' '
' --
|