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: 0f9ddd0d28278919b04aaf45db6a7effa94bf21a (plain)
1
2
3
4
5
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' {} +