Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tabs-to-spaces.sh - github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e52ad8506341f28f0e0fe88ecd19c82c0d29540 (plain)
1
2
3
4
5
6
7
find Duplicati -type f -name *.html -exec sed -i '' $'s/\t/    /g' {} +
find Duplicati -type f -name *.js -exec sed -i '' $'s/\t/    /g' {} +
find Duplicati -type f -name *.css -exec sed -i '' $'s/\t/    /g' {} +
find Duplicati -type f -name *.cs -exec sed -i '' $'s/\t/    /g' {} +
find Duplicati -type f -name *.txt -exec sed -i '' $'s/\t/    /g' {} +

find Duplicati -type f -name *.cs | xargs python unix2dos.py