source: other-projects/tipple-android/osmosis/script/fix_line_endings.sh@ 26899

Last change on this file since 26899 was 26899, checked in by davidb, 11 years ago

Tipple reborn after Chris's Summer of Code 2013

File size: 600 bytes
Line 
1#!/bin/sh
2
3find . -iname "*.java" -exec dos2unix -U '{}' \;
4find . -iname "*.xml" -exec dos2unix -U '{}' \;
5find . -iname "*.txt" -exec dos2unix -U '{}' \;
6find . -iname "*.osm" -exec dos2unix -U '{}' \;
7find . -iname "*.osc" -exec dos2unix -U '{}' \;
8
9find . -iname "*.java" -exec svn propset svn:eol-style native '{}' \;
10find . -iname "*.xml" -exec svn propset svn:eol-style native '{}' \;
11find . -iname "*.txt" -exec svn propset svn:eol-style native '{}' \;
12find . -iname "*.osm" -exec svn propset svn:eol-style native '{}' \;
13find . -iname "*.osc" -exec svn propset svn:eol-style native '{}' \;
14
Note: See TracBrowser for help on using the repository browser.