summaryrefslogtreecommitdiff
path: root/scripts/dos2unix.sh
blob: 70f9c777381991580ea7d94770c32d2e0d45c6e6 (plain)
1
2
3
4
5
#!/bin/sh

for suffix in c h sh cmake txt in conf lang ebuild po pot 1 rc desktop; do
	find . -name \*.$suffix -print | xargs -i sed -i -e 's@\r@@g' {}
done