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