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

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tabs-to-spaces.sh')
-rw-r--r--tabs-to-spaces.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/tabs-to-spaces.sh b/tabs-to-spaces.sh
new file mode 100644
index 000000000..0f9ddd0d2
--- /dev/null
+++ b/tabs-to-spaces.sh
@@ -0,0 +1,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' {} +