summaryrefslogtreecommitdiff
path: root/VC++Files/fix-project-files
blob: b63ceab318a118c475a421f5b2b4ecf1e733f299 (plain)
1
2
3
4
5
6
7
#!/bin/sh

#
# Change linefeed -> return+linefeed for all VC++ project files
# 

find . \( -name "*.dsp" -o -name "*.dsw" \) -print | grep -v "SCCS" | xargs replace '\r\$' '
' '\$' '
' --